Vue 注意事项

版权声明:无需声明 https://blog.csdn.net/Sun_Shydeo/article/details/89040107

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
        }
    }
}

猜你喜欢

转载自blog.csdn.net/Sun_Shydeo/article/details/89040107