在data里定义的变量,三元运算符不应嵌套,应该怎么修改 selectValue: this.$route.query.made === 'isProduct' ? 'product' : this.$route.query.made === 'isServer' ? 'server' : 'project'
时间: 2023-11-27 11:49:02 浏览: 47
LESS 让css也支持变量,运算符,include,嵌套规则.zip
可以使用 if-else 语句来代替三元运算符的嵌套,例如:
```
if (this.$route.query.made === 'isProduct') {
selectValue = 'product';
} else if (this.$route.query.made === 'isServer') {
selectValue = 'server';
} else {
selectValue = 'project';
}
```
这样可以使代码更易读和维护。
阅读全文