vue 使用三元表达式
时间: 2023-06-21 18:04:40 浏览: 616
vue_three_3d
Vue 中可以使用三元表达式来实现条件渲染,语法如下:
```html
<template>
<div>
<p>{{ isShow ? 'Yes' : 'No' }}</p>
</div>
</template>
```
其中,`isShow` 是一个变量,根据其值的真假决定模板中渲染的内容。当 `isShow` 为真时,渲染的内容为 `'Yes'`;当 `isShow` 为假时,渲染的内容为 `'No'`。
阅读全文