docs: remove stable release warning regarding options api (#9186)

This commit is contained in:
Mahdi Boomeri 2022-11-21 14:21:06 +03:30 committed by GitHub
parent e85e3ab6e5
commit fdc35aabb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 8 deletions

View File

@ -212,10 +212,6 @@ export default defineNuxtComponent({
</script>
```
::alert{type=warning}
Options API support for `asyncData` may well change before the stable release of Nuxt 3.
::
::Alert
Using `<script setup lang="ts">` is the recommended way of declaring Vue components in Nuxt 3.
::

View File

@ -7,10 +7,6 @@ description: defineNuxtComponent() is a helper function for defining type safe c
`defineNuxtComponent()` is a helper function for defining type safe Vue components using options API similar to [defineComponent()](https://vuejs.org/api/general.html#definecomponent). `defineNuxtComponent()` wrapper also adds support for `asyncData` and `head` component options.
::alert{type=warning}
Options API support for `asyncData` and `head` may well change before the stable release of Nuxt 3.
::
::Alert
Using `<script setup lang="ts">` is the recommended way of declaring Vue components in Nuxt 3.
::