您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“如何配置vue全局方法”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“如何配置vue全局方法”這篇文章吧。
直接添加到Vue實例原型上
首先打開main.js,通過import引入定義的通用方法utils.js文件,然后使用Vue.prototype.$utils = utils,添加到Vue實例上
import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store' import utils from './utils/Utils' Vue.prototype.$utils = utils new Vue({ router, store, render: h => h(App) }).$mount('#app')
之后,在組件頁面中,需要使用的話,就是this.$utils.xxx就行了
methods: { fn() { let time = this.$utils.formatTime(new Date()) } }
缺點:
綁定的東西多了會使vue實例過大
每次使用都要加上this
優點:
定義簡單
使用webpack.ProvidePlugin全局引入
首先在vue.config中引入webpack和path,然后在module.exports的configureWebpack對象中定義plugins,引入你需要的js文件
完整的vue.config.js配置如下:
const baseURL = process.env.VUE_APP_BASE_URL const webpack = require('webpack') const path = require("path") module.exports = { publicPath: './', outputDir: process.env.VUE_APP_BASE_OUTPUTDIR, assetsDir: 'assets', lintOnSave: true, productionSourceMap: false, configureWebpack: { devServer: { open: false, overlay: { warning: true, errors: true, }, host: 'localhost', port: '9000', hotOnly: false, proxy: { '/api': { target: baseURL, secure: false, changeOrigin: true, //開啟代理 pathRewrite: { '^/api': '/', }, }, } }, plugins: [ new webpack.ProvidePlugin({ UTILS: [path.resolve(__dirname, './src/utils/Utils.js'), 'default'], // 定義的全局函數類 TOAST: [path.resolve(__dirname, './src/utils/Toast.js'), 'default'], // 定義的全局Toast彈框方法 LOADING: [path.resolve(__dirname, './src/utils/Loading.js'), 'default'] // 定義的全局Loading方法 }) ] } }
這樣定義好了之后,如果你項目中有ESlint,還需要在根目錄下的.eslintrc.js文件中,加入一個globals對象,把定義的全局函數類的屬性名啟用一下,不然會報錯找不到該屬性。
module.exports = { root: true, parserOptions: { parser: 'babel-eslint', sourceType: 'module' }, env: { browser: true, node: true, es6: true, }, "globals":{ "UTILS": true, "TOAST": true, "LOADING": true } // ...省略N行ESlint的配置 }
定義好了之后,重啟項目, 使用起來如下:
computed: { playCount() { return (num) => { // UTILS是定義的全局函數類 const count = UTILS.tranNumber(num, 0) return count } } }
缺點:
還沒發現...
優點:
團隊開發爽
以上是“如何配置vue全局方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。