上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 90 下一页
摘要: 1 阅读全文
posted @ 2020-06-11 14:35 Running00 阅读(106) 评论(0) 推荐(0) 编辑
摘要: el-dialog组件的属性 :visible.sync,同个传入的props的某个属性对应的值决定时候 1 要用computed ,并且要设置get和set computed: { visible: { get() { return 值// 来着props }, set() { return 值/ 阅读全文
posted @ 2020-06-11 12:07 Running00 阅读(137) 评论(0) 推荐(0) 编辑
摘要: runtimeCompiler: true, // 如果路由中的component 不是组件时候,是'<template></template>' ;需要设置为true 阅读全文
posted @ 2020-06-10 20:20 Running00 阅读(158) 评论(0) 推荐(0) 编辑
摘要: //变化监听 watch: { $route() { // } } 路由不存在适合,重定向到A对应的路由 { path: '*', redirect: A } 路由未匹配到时候展示A组件 { path: '*', component: A } 阅读全文
posted @ 2020-06-10 20:05 Running00 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1 去重 var a = [1,2,3,4,5,3,2,3,4,5]; // 去掉重复的项 1 Array.form // Array.from() 方法从一个类似数组或可迭代对象创建一个新的,浅拷贝的数组实例 Array.from(new Set(a)) 注意:并不适合所有的去重情况 var a 阅读全文
posted @ 2020-06-10 17:57 Running00 阅读(98) 评论(0) 推荐(0) 编辑
摘要: this.$options.data() // 初始data的值 this.$data // 当前data的值 阅读全文
posted @ 2020-06-10 17:48 Running00 阅读(1098) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <Child1 /> <Child2 /> </div> </template> <template> <div @click="child1Click"> child1 </div> </template> // child1 { data() { return 阅读全文
posted @ 2020-06-10 17:04 Running00 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 1 map方法 var a = [1,2,3] var b = a.map(v => { if (v 2) { return v; } }) map注意事项 1 map是遍历变量啊,遍历的的结果是得到一个数组,数组中的值是有map中的函数的return值决定的,map的结果与map的数组长度相同; 阅读全文
posted @ 2020-06-09 10:34 Running00 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 手写板 阅读全文
posted @ 2020-06-08 14:55 Running00 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 实践,练习 阅读全文
posted @ 2020-06-08 10:51 Running00 阅读(71) 评论(0) 推荐(0) 编辑
上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 90 下一页