你爱上一匹野马,可惜你没有草原,留不住就是留不住,别说不想要,得不到就是得不到,别说不稀罕

2023年8月3日

摘要: 安装指定版本Vue cli一、降低版本如果是已经安装了4.0以上的版本,卸载重装即可npm uninstall -g @vue/cli npm install -g @vue/cli@3.11.0 // 后面为版本号二、其他安装3.0以下:npm install -g vue-cli npm ins 阅读全文
posted @ 2023-08-03 23:41 ruby_s 阅读(33) 评论(0) 推荐(0) 编辑

2022年11月4日

摘要: // this.$refs['form'].clearValidate(); //1.取消验证 // this.$refs['form'].resetFields() //2.表单重置 // this.$refs['form'].validateField('name', (errorMessage 阅读全文
posted @ 2022-11-04 00:03 ruby_s 阅读(85) 评论(0) 推荐(0) 编辑

2022年10月30日

摘要: 分页多选翻页状态保持不变 1、首先设置table表格中的属性 2、在data里面定义tableDataCheck数组,在methods中定义方法handleSelectionChange方法,用来把所勾选的数据保存在tableDataCheck数组中 3、getRowKeys是分页多选翻页状态保持不 阅读全文
posted @ 2022-10-30 19:51 ruby_s 阅读(111) 评论(0) 推荐(0) 编辑

2022年9月12日

摘要: 我们常规的父子组件传值的情况下是这样的 父组件: 父组件取值: 定义: postCode: "", postName: "", 赋值: this.postCode = response.rows[0].postCode; this.postName = response.rows[0].postNa 阅读全文
posted @ 2022-09-12 01:43 ruby_s 阅读(253) 评论(0) 推荐(0) 编辑

2022年9月6日

摘要: 1. at()方法 Array.prototype.at() at() 方法接收一个整数值并返回该索引的项目,允许正数和负数。负整数从数组中的最后一个项目开始倒数。 const array1 = [5, 12, 8, 130, 44]; let index = 2; console.log(arra 阅读全文
posted @ 2022-09-06 19:59 ruby_s 阅读(94) 评论(0) 推荐(0) 编辑
 
摘要: //测试数组中,书否含有某个值const array = [1, 2, 3, 4, 5]; const data=4const qq=array.some(item=>{ return item data})console.log(qq);// expected output: true 阅读全文
posted @ 2022-09-06 18:42 ruby_s 阅读(71) 评论(0) 推荐(0) 编辑

2022年9月2日

摘要: 一、父传子 1. 父组件使用v-bind绑定一个变量visible(v-bind:变量名="值") <Invitation visible="dialogVisible" @getData="getdata" /> 2. 子组件用props接收(与created同级) props: ["visibl 阅读全文
posted @ 2022-09-02 21:03 ruby_s 阅读(103) 评论(0) 推荐(0) 编辑

2022年8月17日

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-08-17 15:08 ruby_s 阅读(307) 评论(0) 推荐(0) 编辑
 
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>VUE-列表过滤</title> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script> < 阅读全文
posted @ 2022-08-17 14:34 ruby_s 阅读(121) 评论(0) 推荐(0) 编辑

2022年8月8日

摘要: 1、安装js-cookie # npm install js-cookie --save 2、引用(需要的文件) import Cookies from 'js-cookie' const TokenKey = 'Admin-Token' export function getToken() { r 阅读全文
posted @ 2022-08-08 09:04 ruby_s 阅读(291) 评论(0) 推荐(0) 编辑