如果我有两个这样的计算属性,
computed: {
id: function(){ return this.$route.query.id; },
hasId: function(){ return this.$route.query.id !== undefined; }
}
我该如何使用这种伪代码id
进行计算hasId
?
computed: {
id: function(){ return this.$route.query.id; },
hasId: function(){ return id !== undefined; }
}
您的伪代码非常接近。只需更改
id
为this.id