1、创建temp.vue文件
<template>
<!-- 模板只能有一个根元素,其他模板内容只能包围在这里面 -->
<div>
模板内容
</div>
</template>模板只能有一个根元素,其他模板内容必须包围在这里面,否则会提示
Component template should contain exactly one root element.
If you are using v-if on multiple elements, use v-else-if to chain them instead.2、引入应用模板
import Temp from '@/components/temp.vue'
export default{
return {
components:{
'app-temp':Temp
}
}
}
版权声明:本文为Sun_Shydeo原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。