嘿,我正在尝试在两个不同的事物之间进行下拉(v-select)更改。在此示例代码中,更改位于两个console.log之间。当我运行此代码时,我需要在方法进入另一个语句之前选择一个选项两次。为什么是这样?我该如何解决这个问题?
=if('From 1 - 35';'thing to do if is true';if('36 - 80';'thing to do if is true';'thing to do when is 81 - 100'))
答案 0 :(得分:1)
methods: {
a() {
this.$nextTick(() => {
if (this.category == 1) {
console.log("work " + this.category)
} else {
console.log("labour " + this.category)
}
})
},
}