项目是基于vue-cli的多页面网站 因为element-ui被打包进vendor后 vendor变得很大 因此想以script标签的形式引用到html 并在webpack打包时排除element-ui我的webpack配置了externals
externals: {
moment: 'window.moment',
jquery: 'window.$',
'element-ui':'ElementUI'
},
其他moment jquery都已经成功排除 但打包后element-ui依然存在于vendor中 不知道为什么了
代码如下,同时把你 main.js 里的 use 拿掉