2022年10月12日

如何让input框只能输入正整数和0

摘要: 工作中当我们写完了一个表单后,可能会有这样一个需求:input框只能输入正整数和0,下面代码可以帮助你解决问题! <el-inut v-model='num' @input='handleInput'/> methods:{ handleInput(){ this.num = this.num.re 阅读全文

posted @ 2022-10-12 10:33 久居我梦 阅读(228) 评论(0) 推荐(0) 编辑

2022年8月16日

el-checkbox遍历的的时候如何使用

摘要: <template> <div class="checkBox"> <template v-for="item in checkedCities"> <el-checkbox :key="item.id" v-model="item.isCheck" @change="handleCheckAllC 阅读全文

posted @ 2022-08-16 21:44 久居我梦 阅读(611) 评论(0) 推荐(0) 编辑

2022年6月15日

props双向绑定?v-bind.sync=''

摘要: <template> <div> <children v-bind:title.sync="title"/> </div> </template> <script> export default { data(){ return{ title:"学习vue" } } } </script> 子组件: 阅读全文

posted @ 2022-06-15 14:55 久居我梦 阅读(73) 评论(0) 推荐(0) 编辑

Vue的v-bind="$attrs"如何使用

摘要: /这是是爷爷组件 <template> /传两个prop,parent和child <parent parent='40' child="18"/> </template> <script> export default{ name:"grandpa" } </script> //这是是爸爸组件 < 阅读全文

posted @ 2022-06-15 14:36 久居我梦 阅读(272) 评论(0) 推荐(0) 编辑

2022年6月1日

博客园如何自定义添加复制按钮?

摘要: //添加复制按钮这是js部分 <script> let cnblogs_code = document.querySelectorAll('.cnblogs_code') for(let i=0;i<cnblogs_code.length;i++){ let copy_li = document.c 阅读全文

posted @ 2022-06-01 17:15 久居我梦 阅读(78) 评论(0) 推荐(0) 编辑

js如何监听网络状态

摘要: window.addEventListener("offline", () => { console.log("网络连接失败"); }); window.addEventListener("online", () => { console.log("网络连接成功"); }); 阅读全文

posted @ 2022-06-01 15:37 久居我梦 阅读(762) 评论(0) 推荐(0) 编辑

2022年5月26日

lodash比较常用的方法

摘要: 深拷贝: let person = { name:"123", age:"18", store:[1,2,3,4], function(x,y){ return x + y } } let depObj= _.cloneDeep(person) 数组去重: let arr = [2, 1, 2, ' 阅读全文

posted @ 2022-05-26 15:14 久居我梦 阅读(127) 评论(0) 推荐(0) 编辑

2022年4月8日

如何监听路由?页面刷新监听不到?

摘要: watch: { '$route': { handler(to) { console.log(to.path); }, deep: true, immediate: true } },//这样就行了 阅读全文

posted @ 2022-04-08 11:06 久居我梦 阅读(139) 评论(0) 推荐(0) 编辑

2022年3月28日

swiper插件动态渲染下使用loop无效,无限滑动无效?

摘要: // 初始化轮播图 new Swiper(".swiper",{ speed: 500, autoplay: { disableOnInteraction: false,//手动滑动不打断 }, loop: true, // 如果需要分页器 pagination: { el: ".swiper-pa 阅读全文

posted @ 2022-03-28 11:36 久居我梦 阅读(491) 评论(0) 推荐(0) 编辑

2022年2月25日

vue重复点击路由报错?

摘要: import Vue from 'vue' //导入vue文件 import VueRouter from 'vue-router' //导入vue-router文件(前提要安装vue-router!!!) Vue.use(VueRouter) const router = new VueRoute 阅读全文

posted @ 2022-02-25 18:18 久居我梦 阅读(60) 评论(0) 推荐(0) 编辑

导航