摘要:
阅读全文
摘要:
router.beforeEach((to, from, next) => { if(to.path!='/login' && localStorage.token==undefined){ next('/login') return } next() }) 阅读全文
摘要:
/^[\u4E00-\u9FA5A-Za-z0-9]+$/ 阅读全文
摘要:
一、校验数字的表达式 数字:^[0-9]*$ n位的数字:^\d{n}$ 至少n位的数字:^\d{n,}$ m-n位的数字:^\d{m,n}$ 零和非零开头的数字:^(0|[1-9][0-9]*)$ 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(\.[0-9]{1,2})?$ 带1 阅读全文
摘要:
var chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz0123456789' console.log(chars.charAt(Math.floor(Math.random() * chars.length))) 阅读全文
摘要:
阅读全文
摘要:
第一种,只引入单个图片,这种引入方法在异步中引入则会报错。 比如需要遍历出很多图片展示时 <image :src = require('图片的路径') /> 第二种,可引入多个图片,也可引入单个图片。 vuelic3版本没有static文件夹。可将静态图片存放到public目录下,直接引入即可 <i 阅读全文
摘要:
var arr =['h','e','l','l','o'] var s = arr.join(""); console.log(s); 阅读全文