From 7a499001e81b41942299253cc419e7fe67a76f86 Mon Sep 17 00:00:00 2001 From: qiang Date: Tue, 10 Jan 2023 17:05:32 +0800 Subject: [PATCH] docs: Vue3 directive --- docs/tutorial/vue3-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/vue3-api.md b/docs/tutorial/vue3-api.md index fd0fd2e22..388f0ce0d 100644 --- a/docs/tutorial/vue3-api.md +++ b/docs/tutorial/vue3-api.md @@ -173,8 +173,8 @@ const app = createApp({}) |Vue 指令 |描述 |H5 |App端|微信小程序 |说明 | | -- | -- | -- |-- |-- | -- | -|v-text | 更新元素的 `textContent`。 [详情](https://v3.cn.vuejs.org/api/directives.html#v-text) |√ |√ | √ | | -|v-html | 更新元素的 `innerHTML`。 [详情](https://v3.cn.vuejs.org/api/directives.html#v-html) |√ | √ | x |微信小程序会被转成 `rich-text` | +|v-text | 更新元素的 `textContent`。 [详情](https://v3.cn.vuejs.org/api/directives.html#v-text) |√ |√ | x | | +|v-html | 更新元素的 `innerHTML`。 [详情](https://v3.cn.vuejs.org/api/directives.html#v-html) |√ | √ | x | | |v-show | 根据表达式的真假值,切换元素的 `display CSS property`。 [详情](https://v3.cn.vuejs.org/api/directives.html#v-show) |√ | √ | √ | | |v-if | 根据表达式的真假值来有条件地渲染元素。 [详情](https://v3.cn.vuejs.org/api/directives.html#v-if) |√ | √ | √ | | |v-else | 为 `v-if` 或者 `v-else-if` 添加`“else 块”`。[详情](https://v3.cn.vuejs.org/api/directives.html#v-else) |√ | √ | √ | | -- GitLab