热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

vue计算属性和data_vue的计算属性和侦听属性,方法

我自己写todolist的时候,做已完成和未完成筛选的时候,发现用计算属性只能执行一次,再就动不了了。下面的代码是把filterlists放到方法里面&

我自己写todolist的时候,做已完成和未完成筛选的时候,发现用计算属性只能执行一次,再就动不了了。

下面的代码是把filterlists放到方法里面,就可以用了,但是放到计算里面就只执行一次。

计算属性不是依赖有更新,自己就会更新吗。

vue-todolist

{{uptime}}

mylist-todo

{{item.text}}

×

{{item.addtime}}

已完成

未完成

全部

export default {

data(){

return{

newtodo:'',

lists:[],

compoleted:false,

notyet:false

}

},

props:{

uptime:{

type:String

}

},

methods:{

addlist(){

if(this.newtodo){

this.lists.push({

text:this.newtodo.trim(),

ischeck:false,

addtime:this.uptime

});

this.newtodo='';

}

},

dellist(thisdata){

this.lists.splice(this.lists.indexOf(thisdata),1);

},

myall(){

this.completed=false;

this.notyet=false;

},

mycom(){

this.completed=true;

this.notyet=false;

},

mynot(){

this.completed=false;

this.notyet=true;

},

filterlists:function(){

if(this.completed){

return this.lists.filter(function(todo){

return todo.ischeck

})

}else if(this.notyet){

return this.lists.filter(function(todo){

return !todo.ischeck

})

}else{

return this.lists;

}

}

},

computed:{

}

}

这是页面效果



推荐阅读
author-avatar
堕落戥囝_631
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有