vue,watch
文章平均质量分 58
木子楠
千里之行,始于足下
展开
-
题````····
前端面试题总结原创 2022-07-05 17:03:41 · 448 阅读 · 1 评论 -
后台管理-label实时变更改变颜色
html:html:<FormItem label="活动名称" :class="{'stycolor': LayoutChangeRedArr.includes('activityName')}" prop="activityName"> <Input v-model="formValidate.activityName" placeholder="活动名称" @on-change="ac.原创 2021-04-19 15:35:32 · 556 阅读 · 0 评论 -
使用watch监听路由变化和watch监听对象
解决办法:export default{data(){return{}},watch:{"$route":"getPath" // 监听事件},methods:{getPath(){let path = this.$roune.path; //或得当前路径进行逻辑判断}}}原创 2017-06-01 17:16:59 · 9746 阅读 · 0 评论 -
vue 检测变动的数组
在vue文档中有这样一段话。Vue 不能检测到对象属性的添加或删除。vue不能检测到下面两种变动的数组:1、当你利用索引直接设置一个项时,例如:this.ruleStatus[index] = true2、当你修改数组的长度时,例如:this.ruleStatus.length = 9应该把代码改为:this.$set(this.ruleStatus,index,true)...原创 2018-02-28 17:18:31 · 428 阅读 · 0 评论