摘要:
<input type="text" v-model="phone" ref="input"> 使用ref选中 在生命周期mounted中 mounted(){ this.$nextTick(() => { this.$refs.input.focus() }) } 阅读全文
posted @ 2020-11-11 15:22
2019liyuan
阅读(449)
评论(0)
推荐(1)
摘要:
不可直接使用变量路径 ,会报错 html: ~~~ <img :src="abIndex == 0 ? './imgs/img.png':'./imgs/img1.png'" alt=""> ~~~ 需要用import引入 写法①: js: `import img from "@/assets/im 阅读全文
posted @ 2020-11-11 15:17
2019liyuan
阅读(1220)
评论(0)
推荐(0)
摘要:
### 1格式化时间转时间戳 苹果手机中不可使用 `new Date('2020-09-10 12:10:10')` 他不认识'-',需要将其转换为'/' `new Date('2020-09-10 12:10:10'.replace(/\-/g, '/'))` ### 2苹果手iphoneX 安全 阅读全文
posted @ 2020-11-11 15:03
2019liyuan
阅读(677)
评论(0)
推荐(0)