v-model.sync如何写三元运算符
时间: 2023-10-18 08:05:57 浏览: 143
cnocr-v2.3-densenet-lite-136-gru-epoch=004-ft-model.onnx
可以使用以下语法:
```
<input v-model="data" :value="condition ? 'foo' : 'bar'" @input="val => { data = val }">
```
其中,`data` 是绑定的数据,`condition` 是条件,如果条件成立,绑定的数据将赋值为 `'foo'`,否则将赋值为 `'bar'`。绑定数据的事件是 `@input`,每次输入都会更新数据。这里使用了箭头函数来将 `val` 赋值给 `data`。使用 `.sync` 修饰符可以简化这个过程,但是后面的三元运算符依然可以使用。
阅读全文