局部组件
<script type="text/javascript"> var 组件名 = { template: "<button @click='btnClick'>{{ num }}</button>", data: function() { return{ num : 0 } }, methods:{ btnClick: function(){ this.num++; } } } new Vue ({ el: '#app', components: { 组件名 } }) </script>