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
阅读全文
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) {
阅读全文