vue之注册自定义的全局js函数

vue

前端开发的时候,总会需要写一些js函数,在vue框架中为了方便使用,可以考虑注册一个全局的js函数,下面是注册步骤:

1.0 可以在assets文件中的js文件下面新建一个js文件,如:yun.js

2.0 在yun.js 上面实现一个日期格式的函数,如下

import Vue from 'vue'

const format = (o, format) => { //日期类型

let args = {    

"M+": o.getMonth() + 1,

    

"d+": o.getDate(),

    

"h+": o.getHours(),

    

"m+": o.getMinutes(),

    

"s+": o.getSeconds(),

    

"q+": Math.floor((o.getMonth() + 3) / 3), //quarter

"S": o.getMilliseconds()  

};  

if (/(y+)/.test(format)) format = format.replace(RegExp.$1, (o.getFullYear() + "").substr(4 - RegExp.$1.length));  

for (let i in args) {

let n = args[i];    

if (new RegExp("(" + i + ")").test(format)) format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? n : ("00" + n).substr(("" + n).length));  

}  

return format;

}

export default function(Vue) {

//添加全局API

Vue.prototype.$yuns = {

format

}

}

3.0 下面将yun.js文件注册到vue的全局中去,需要在main.js文件下面注册全局:如图下

4.0 前面步骤将自定义的js注册到全局去了,后面就可以使用了,如下:

以上就是在vue中注册全局的自定义js文件的步骤,以后需要添加js函数,就在yun.js加上去就可以调用了

以上是 vue之注册自定义的全局js函数 的全部内容, 来源链接: utcz.com/z/379226.html

回到顶部