1. IntroductionIn the development of Vue projects, there will definitely be a scenario where the same method is used in different component pages, such as formatting time, file downloading, deep copying of objects, returning data types, copying text, and so on. At this time, we need to extract the commonly used functions and provide them for global use. So how can we define a tool function class that we can use in the global environment? Please see the breakdown below. PS: This article uses vue 2.6.12 2. The first methodAdd directly to the Vue instance prototype First open main.js, import the common method utils.js file defined by import, and then use Vue.prototype.$utils = utils to add it to the Vue instance 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') After that, if you need to use it in the component page, just use this.$utils.xxx methods: { fn() { let time = this.$utils.formatTime(new Date()) } } shortcoming:
advantage:
Official documentation 3. The second methodUse webpack.ProvidePlugin to import globally First, introduce webpack and path in vue.config, then define plugins in the configureWebpack object of module.exports and introduce the js files you need The complete vue.config.js configuration is as follows: 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, //Open proxypathRewrite: { '^/api': '/', }, }, } }, plugins: [ new webpack.ProvidePlugin({ UTILS: [path.resolve(__dirname, './src/utils/Utils.js'), 'default'], // Defined global function class TOAST: [path.resolve(__dirname, './src/utils/Toast.js'), 'default'], // Defined global Toast pop-up box method LOADING: [path.resolve(__dirname, './src/utils/Loading.js'), 'default'] // Defined global Loading method }) ] } } After defining it like this, if you have ESlint in your project, you also need to add a globals object to the .eslintrc.js file in the root directory to enable the property name of the defined global function class, otherwise an error will be reported that the property cannot be found. module.exports = { root: true, parserOptions: { parser: 'babel-eslint', sourceType: 'module' }, env: { browser: true, node: true, es6: true, }, "globals":{ "UTILS": true, "TOAST": true, "LOADING": true } // ...Omit N lines of ESlint configuration} After defining it, restart the project and use it as follows: computed: { playCount() { return (num) => { // UTILS is a defined global function class const count = UTILS.tranNumber(num, 0) return count } } } shortcoming:
advantage:
Official documentation SummarizeThis concludes this article on two ways to configure vue global methods. For more information on configuring vue global methods, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to enable the root account in Ubuntu 20.04
>>: Mariadb remote login configuration and problem solving
URL rewriting helps determine the preferred domai...
Table of contents JavaScript prototype chain Obje...
After obtaining the system time using Java and st...
This tutorial is only applicable to Windows syste...
This article uses an example to describe the simp...
Table of contents System update configuration Cha...
I have used the vi editor for several years, but ...
When we create a page, especially a homepage, we ...
GUN Screen: Official website: http://www.gnu.org/...
Date-type single-row functions in MySQL: CURDATE(...
1 Problem description: 1.1 When VMware is install...
This article mainly introduces the sample code of...
<br />When thoughts were divided into East a...
The following introduces the commonly used head s...
accomplish This effect is difficult to replicate ...