1. 程式人生 > >vue專案中外掛的引入

vue專案中外掛的引入

方法一:

        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'

方法