vue组件中怎么引入html文件

2025-03-31 01:50:27
推荐回答(1个)
回答1:

vue组件中引入html文件


js:

var MyComponent = Vue.extend({
template: '#tpl'
});