Vue-template
Vue中提供的template标签,实际上并不会作为标签渲染到浏览器页面上。只是一个辅助性标签,不影响它包裹标签的结构,比如说下面的例子:
<template>
<h1>1</h1>
<h1>2</h1>
<h1>3</h1>
</template>
最终在浏览器渲染出来的还是:
<h1>1</h1>
<h1>2</h1>
<h1>3</h1>
template标签是辅助性标签,比如说下面的用法:
<template v-if="false">
<h1>1</h1>
<h1>2</h1>
<h1>3</h1>
</template>