我在test.js
文件中有一个vue实例,让我们说var vm= new Vue({
el: '#app2',
template: `
<button @click="click2($event)">
{{text}}
</button>`,
data: () => {
return {
text: "Hello"
}
},
methods: {
click2() {
console.log("something")
}
}
})
<button>
&#13;
我想知道我是否可以将.html
模板放入单独的test.html
文件中,让我们说template
并将其链接到属性.vue
?
由于某些限制,我无法使用vue-cli和webpack生成{{1}}文件
由于