摘要:
this.$refs[formName].validateField('phone', phoneError => { //验证手机号码是否正确 if (!phoneError) { console.log('手机号正确') } else { return false; } }); 阅读全文
摘要:
<!-- 字符串 --> <router-link to="home">Home</router-link> <!-- 渲染结果 --> <a href="home">Home</a> <!-- 使用 v-bind 的 JS 表达式 --> <router-link v-bind:to="'home 阅读全文
摘要:
数组对象arr中属性num最大值最小值 // 最大值 Math.max.apply(Math,arr.map(item => { return item.num })) arr.sort((a, b) => { return b-a })[0].num // 最小值 Math.min.apply(M 阅读全文