1.home.ts上加 declare var Vue
ngOnInit() {
const MyVueWebComp = {
props: ['msg'],
template:<div style="">,
`,
data() {
return {
text: '',
};
},
methods: {
}
}
var app1 = new Vue({
el: ".app",
created() {
console.log("这是一个哈哈哈哈 ");
var that = this;
},
data: {
value:0
},
methods: {
}
}
Vue.customElement('my-vue-web-comp', MyVueWebComp);
2.home.html
<my-vue-web-comp ></my-vue-web-comp>