vue中全局公共方法的使用

2022/2/3 23:17:04

本文主要是介绍vue中全局公共方法的使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.在assets文件夹下,新建js文件夹,创建common.js

export default {    
    istest(){
        console.log("this is test")
    }
}

2.如果是全局(多页面)使用:在main.js中引入

/* 引入公共js*/
import common from '@/assets/js/common.js'
Vue.prototype.common=common;

3..在VUE文件中使用

this.common.istest();    //this is test

 

 

 

如果是单页面使用:

1.在vue的script中引入

import common from '@/assets/js/common'

2.在vue文件中使用

common.istest();    //this is test

 



这篇关于vue中全局公共方法的使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程