0.0.3 • Published 5 years ago

sf-common-func v0.0.3

Weekly downloads
13
License
-
Repository
-
Last release
5 years ago

spacesforce common function js

空间原力公共方法

发布

npm login  #登录
npm publish #发布
npm version patch  #1.0.1 表示小的bug修复
npm version minor  #1.1.0 表示新增一些小功能
npm version mmajor #2.0.0 表示大的版本或大升级
npm version preminor #1.1.0-0 后面多了个0,表示预发布

安装

$ npm install sf-common-func -S

全局引用main.js

import $sfcommonfunc from 'sf-common-func'
Vue.prototype.$sfcommonfunc = $sfcommonfunc

页面调用

this.$sfcommonfunc.getRandStr(n) #获取n位随机数
this.$sfcommonfunc.getCurTime() #获取当前时间
this.$sfcommonfunc.parseQueryString(str) #获取url参数
this.$sfcommonfunc.getCookie(k) #获取cookie
this.$sfcommonfunc.setCookie(k, v) #设置cookie
this.$sfcommonfunc.delCookie(k) #删除cookie