方法一:

        1,先在主入口页面index.html中用script标签引入

<script src="./static/jquery-1.12.4.js"></script>

        2,在vue.config.js配置文件里配置一个externals

module.exports = {
    configureWebpack: {
        externals: {
            'jquery': 'jquery',
        }
    }
};

       3,在组件中引用jquery

import $ from 'jquery'

方法二:

08-03 11:27