其他分享
首页 > 其他分享> > vue 抽离公共方法

vue 抽离公共方法

作者:互联网

方法一:
1、通过install 方法:
js文件编写抽离的方法:

const data = {
  install (Vue){
    Vue.prototype.timestampToTime = function (timestamp) { }
  	Vue.prototype.fn2= function () {} //抽离多个公共方法
  }
}
export default data;

2、在main.js引入

//公共方法
import base from "./common/base";
Vue.use(base);

3、使用

在模板的methods方法使用:
this.timestampToTime(1612249038971)
在<template></template>中使用:
<template>
	<div>{{timestampToTime(1612249038971)}}</div>
</template>

方法二:
1、js文件编写要抽离的方法:

 // 时间戳转化
export default{
  timestampToTime (timestamp) {
    let strDate;
    var date = new Date(timestamp); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
    var Y = date.getFullYear() + '-';
    var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
    var D = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + ' ';
    var h = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':';
    var m = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes());
    strDate = Y + M + D + h + m;
    return strDate;
  }
}

2、main.js 引入

//公共方法
import base from "./common/base";
 Vue.prototype.base = base

3、使用

在模板的methods方法使用:
this.base.timestampToTime(1612249038971)
在中使用:

{{base.timestampToTime(1612249038971)}}

标签:10,vue,Vue,抽离,var,base,公共,date,timestampToTime
来源: https://blog.csdn.net/sinat_41541913/article/details/113611970