Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 439 Bytes

File metadata and controls

21 lines (13 loc) · 439 Bytes

commonJS

常用 JS 工具类整理 例,vue 项目中,可以直接放在 utils 文件夹下,在 main.js 中引入; 绑在在原型中,直接使用。 示例: step1:main.js;

import BaseCommon from '@/utils/baseCommon';

Vue.prototype.$baseCommon = BaseCommon;

step2:其他页面调用(使用):

this.$baseCommon.userBrowser();