2020年4月28日

摘要: // vant覆盖默认样式的写法 <style lang="scss" scoped> ::v-deep .van-popup { background: transparent; color: #fff; } </style> 阅读全文

posted @ 2020-04-28 18:52 猫头唔食鱼 阅读(3717) 评论(0) 推荐(0)

摘要: html <p ref="p">这是文字</p> <button @click="copy">点击复制上面内容</button> js data() { return { copyText: "" }; }, methods: { copy() { this.copyText = this.$ref 阅读全文

posted @ 2020-04-28 09:08 猫头唔食鱼 阅读(1603) 评论(0) 推荐(0)

摘要: html <div class="test" @touchstart="gtouchstart()">按啊</div> js data(){ return { timeOutEvent: 0 ,// 长按事件定时器 }} methods: { gtouchstart () { // 开始触摸 thi 阅读全文

posted @ 2020-04-28 08:52 猫头唔食鱼 阅读(1713) 评论(0) 推荐(0)