2021年5月9日
时间:1.6个小时左右
代码:130行左右
博客:1
知识点:vue组件
| 组件注册注意事项 | |
| 1、组件参数的data值必须是函数 | |
| 2、组件模板必须是单个跟元素 | |
| 3、组件模板的内容可以是模板字符串 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id="app">
<button-counter></button-counter>
<button-counter></button-counter>
<button-counter></button-counter>
</div>
<script type="text/javascript" src="js/vue.js"></script>
<script type="text/javascript">
/*
组件注册
*/
Vue.component('button-counter', {
data: function(){
return {
count: 0
}
},
template: '<button @click="handle">点击了{{count}}次</button>',
methods: {
handle: function(){
this.count += 2;
}
}
})
var vm = new Vue({
el: '#app',
data: {
}
});
</script>
</body>
</html>


浙公网安备 33010602011771号