Vue组件
Vue组件使用
组件统一驼峰取名,小写使用
取名:
MyMenu
使用:<my-menu><my-menu/>
<body>
<div id="app">
<the-heading></the-heading>
</div>
<script>
Vue.component('TheHeading', {
data: function () {
return {
count: 0
}
},
template: '<button @click="count++">被点击了{{count}}次</button>'
});
var vm = new Vue({
el: '#app',
})
</script>
</body>
Vue学习笔记 文章被收录于专栏
Vue相关