lincenying / vue2-multiple-entry

vue2, vue2+vue-router, vue2+vue-router+vuex 混合多页配置实例
https://lincenying.github.io/vue2-multiple-entry/index
150 stars 55 forks source link

template/index.html中的jquery在哪里有用到? #6

Closed includeleec closed 7 years ago

includeleec commented 7 years ago

template/index.html中的jquery在哪里有用到? 搜索了下代码,只是看到在webpack.base.conf.js里有用到,我注释掉,程序正常。 但是删除掉 页面就渲染不出来了。

lincenying commented 7 years ago

不需要jquery吧, 删除模版的cdn链接, 删除webpack.base.conf.js里的

externals: {
        'jquery': 'jQuery'
    },

new webpack.ProvidePlugin({$: 'jquery', jQuery: 'jquery', 'window.jQuery': 'jquery'}),
includeleec commented 7 years ago

嗯。我新建的module就这么做了,可以的,没问题。 但是原来你给的出的示例, 删掉 <script src="//apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> 就不行。

lincenying commented 7 years ago

toastr 插件需要用到 jquery