//组件代码如下
var test = Vue.extend({
data: function () {
return {
aaaa:''
}
},
props: {
test: String,
},
template: heredoc(function () {
/*
<div >
{{ test }}
</div>
*/
}),
watch: {
},
created: function () {},
methods: {
}
});
Vue.component('test', test)
//一般组件调用方法
<test test="hello"></test>
一般组件调用如上,但由于业务需求,我需要使用js来调用,类似使用js调用jquery扩展的方法!
求教,有没有类似的的解决方案~
慕的地6264312
相关分类