码迷,mamicode.com
首页 > Web开发 > 详细

Vue.js——6.创建组件

时间:2019-05-29 19:42:38      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:temp   vue   创建   不同   tmp   方法   必须   template   不用   

Vue组件
组件就是为了拆分Vue实例的代码量,能够不同的功能定义不同的组件
创建组件的方法
1.
// 创建组件
let com1=Vue.extend({
template:‘<h1>hellow</h1>‘//必须加标签名称
})
Vue.component(‘myCon1‘,com1)
引用 <my-con1></my-con1>
//或者不用驼峰

第二种
Vue.component(‘myCon1‘,{
template:‘<h1>hellow</h1>‘
})

第3种
Vue.component(‘myCon1‘,{
template:‘#tmp1‘
})
在app外面
<template id="tmp1">
<h1>hollow</h1>
</template>

Vue.js——6.创建组件

标签:temp   vue   创建   不同   tmp   方法   必须   template   不用   

原文地址:https://www.cnblogs.com/ruogu/p/10945678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!