关键技术点:
参考文档
https://blog.enginaar.com/vue-angular-together-in-one-app/
注意:
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
@NgModule({
schemas:[CUSTOM_ELEMENTS_SCHEMA],
declarations:[]
})
3、使用vue 组件
html 文件
Primary
ts文件
// 添加 Vue 的声明
declare var Vue: any;
export class DefaultComponent implements OnInit {
constructor() {
}
ngOnInit(): void {
// 关键代码
Vue.createApp({
}).use(vueComponent) // 注册 vue 组件
.mount('#defaultCp')
}
}