一 自定义模板
<template id="template01">
<h1>这是我自定义的模板</h1>
</template>
二注册模板
Vue.component('hello',{
template:'#template01',
});
三 在自定义模板中绑定数据
四在面板中绑定事件
五 全部代码
<template id="template01">
<h1>这是我自定义的模板</h1>
</template>
Vue.component('hello',{
template:'#template01',
});