vue中的几种组件

1、模版在字符串中

id="app">

2、script标签

id="app">

3.template标签

id="app">

4.单文件组件

这种方法常用在vue单页应用中。详情看官网:https://cn.vuejs.org/v2/guide/single-file-components.html
创建.vue后缀的文件,组件Hello.vue,放到components文件夹中






app.vue








你可能感兴趣的:(Vue)