我想在 Vue 3 中这样做
new ComponentName({
propsData: {
title: 'hello world',
}
}).$mount();
Run Code Online (Sandbox Code Playgroud)
但我收到这个错误:VueComponents_component_name__WEBPACK_IMPORTED_MODULE_1__.default is not a constructor
目前,我们正在使用上述方法通过以下方式在我们的旧应用程序中附加 VUE 组件:append
我想在 VUE 3 上做同样的事情,但我还没有找到方法
提前致谢