当前位置:   article > 正文

vue中设置对象内置函数并引用_vue 如何在数组对象加一个函数

vue 如何在数组对象加一个函数

auth.js:

import Cookies from 'js-cookie'

const TokenKey = 'vue_admin_template_token'

const auth = {};

auth.getToken = function() {

  return Cookies.get(TokenKey)

}

auth.setToken = function(token) {

  return Cookies.set(TokenKey, token)

}

auth.removeToken = function() {

  return Cookies.remove(TokenKey)

}

export default auth;

全局导入方法:

import auth from './auth'

Vue.prototype.$authUser = auth;

局部引用方法:

this.$authUser.removeToken();

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号