06 2020 档案
vue amap
摘要:index.html <head> ... <script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=xxxxxx"></script> </head> vue.config.js module.exp 阅读全文
posted @ 2020-06-30 16:10 jzfan
vue validate js
摘要:export default class Validator { static required(val, msg) { if ((!val && val != 0) || val.length 0) { throw msg } return this } static mobile(val) { 阅读全文
posted @ 2020-06-05 20:48 jzfan