vue main.js引入
// main.js 全局引入lodash import _ from 'lodash' Vue.prototype._ = _ // 使用 this._.debounce(this.handleClick,1000,false)
vue中其他文件引入test.js
import _ from "lodash";
let res=_.defaults({ 'a': 1 }, { 'a': 3, 'b': 2 });
vue main.js引入
// main.js 全局引入lodash import _ from 'lodash' Vue.prototype._ = _ // 使用 this._.debounce(this.handleClick,1000,false)
vue中其他文件引入test.js
import _ from "lodash";
let res=_.defaults({ 'a': 1 }, { 'a': 3, 'b': 2 });
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。