diff --git a/src/.vuepress/public/images/sponsors/autocode.svg b/src/.vuepress/public/images/sponsors/autocode.svg deleted file mode 100644 index 25c3bde4..00000000 --- a/src/.vuepress/public/images/sponsors/autocode.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/.vuepress/public/images/sponsors/hbuilder.png b/src/.vuepress/public/images/sponsors/hbuilder.png new file mode 100644 index 00000000..d39aadeb Binary files /dev/null and b/src/.vuepress/public/images/sponsors/hbuilder.png differ diff --git a/src/.vuepress/theme/data/patreon-sponsors.js b/src/.vuepress/theme/data/patreon-sponsors.js index 324fbc7b..cec7435d 100644 --- a/src/.vuepress/theme/data/patreon-sponsors.js +++ b/src/.vuepress/theme/data/patreon-sponsors.js @@ -7,10 +7,10 @@ export default { ], "special_sponsors": [ { - "url": "https://autocode.com", - "img": "autocode.svg", - "name": "Autocode", - "description": "Build app-to-app workflows and connect APIs" + "url": "https://www.dcloud.io/hbuilderx.html?hmsr=vue-en&hmpl=&hmcu=&hmkw=&hmci=", + "img": "hbuilder.png", + "name": "HBuilder", + "description": "An IDE for Vue" } ], "platinum_sponsors": [ diff --git a/src/api/refs-api.md b/src/api/refs-api.md index 6fcdbb67..8db87b61 100644 --- a/src/api/refs-api.md +++ b/src/api/refs-api.md @@ -16,7 +16,7 @@ count.value++ console.log(count.value) // 1 ``` -If an object is assigned as a ref's value, the object is made deeply reactive by the [reactive](./basic-reactivity.html#reactive) method. +If an object is assigned as a ref's value, the object is made deeply reactive by the [reactive](./basic-reactivity.html#reactive) function. **Typing:** diff --git a/src/api/sfc-script-setup.md b/src/api/sfc-script-setup.md index a775ebf4..cfb7b2b3 100644 --- a/src/api/sfc-script-setup.md +++ b/src/api/sfc-script-setup.md @@ -89,7 +89,7 @@ Think of `MyComponent` as being referenced as a variable. If you have used JSX, ### Dynamic Components -Since components are referenced as variables instead of registered under string keys, we should use dynamic `:is` binding when using dynamic components inside `