Vue3 webcomponents 生产构建问题
Vue3 webcomponents production build problem
我正在尝试将我的 vue2 webcomponent 迁移到 vue3,但是当我为生产创建构建时出现了问题。
我在 --target wc
中使用 vue-cli,它现在显示一个错误,指出 vue3 webcomponent 支持仍在开发中。
删除 --target
选项我的构建文件有很大不同,我依赖于没有此选项的 .min 文件不会被构建。
我有什么选择? vite 是否提供与之前 vue-cli 与 vue2 相同的构建输出?
现在 - 2022 年 5 月- vue-cli-service 完全不支持 --target wc
事实上在源代码中它是完全禁用的
if (vueMajor === 3) {
abort(`Vue 3 support of the web component target is still under development.`)
}
我正在尝试将我的 vue2 webcomponent 迁移到 vue3,但是当我为生产创建构建时出现了问题。
我在 --target wc
中使用 vue-cli,它现在显示一个错误,指出 vue3 webcomponent 支持仍在开发中。
删除 --target
选项我的构建文件有很大不同,我依赖于没有此选项的 .min 文件不会被构建。
我有什么选择? vite 是否提供与之前 vue-cli 与 vue2 相同的构建输出?
现在 - 2022 年 5 月- vue-cli-service 完全不支持 --target wc 事实上在源代码中它是完全禁用的
if (vueMajor === 3) {
abort(`Vue 3 support of the web component target is still under development.`)
}