import vue问题
Opened this issue · 1 comments
younth commented
vue 默认 NPM 包导出的是 运行时 构建,vue.runtime.common
。fis3如何改成引入vue.common.js
呢?webpack可以这样配置:
resolve: {
alias: {
'vue$': 'vue/dist/vue.common.js'
}
}
LK26cc commented
我是这么解决的。
fis.hook('commonjs', {
packages: [
{
name: 'vue',
location: '/node_modules/vue/dist/',
main: 'vue.common.js'
}
],
extList: ['.js', '.vue']
});