docs
docs copied to clipboard
📄 Documentation for Vue 3
Inspired by the [**Transferring slots** section in Astro's documentation](https://docs.astro.build/en/core-concepts/astro-components/#transferring-slots), I think similar content could also be added to the slots.md of Vue's documentation. If that works, I'd be happy to...
You guys didn't explain the importance of the `text` variable inside ``. Because of my experience with `Angular`, I questioned why I need to perform a two-way binding to a...
> The following is a reproduction of the description from https://github.com/vuejs/docs/pull/2200. Credit goes fully to @olfek for reporting this issue. Existing code snippet gives this error: Default export of the...
Hello, I noticed that inside your accessibility documentation in the section [Content Structure](https://vuejs.org/guide/best-practices/accessibility.html#content-structure), you have a tip for landmarks that's not up-to-date. The quote I am referring to is this:...
https://vuejs.org/guide/reusability/composables.html#return-values > You have probably noticed that we have been exclusively using ref() instead of reactive() in composables. The recommended convention is for composables to always return a plain, non-reactive...
Hi, I couldn’t find the link to “Style Guide” in the menu. I try to use search “Style Guide” using the search box, but no result is returned. As a...
I observed that :style can be co-exist with static style [as well as class](https://vuejs.org/guide/essentials/class-and-style.html#:~:text=In%20addition%2C%20the%20%3Aclass%20directive%20can%20also%20co%2Dexist%20with%20the%20plain%20class%20attribute.). It would be beneficial to explicitly mention this in the documentation.
 https://vuejs.org/tutorial/#step-10 https://github.com/vuejs/docs/blob/fe15ed89b280d99de9b3950d6d1452a76455189d/src/tutorial/src/step-10/_hint/App/composition.js#L16 Current demo code of watcher in the tutorial calls `fetch` directly in the `` block. But such usage is a known problematic pattern when use with server...
### What problem does this feature solve? When using `provide` multiple times in the component tree, the closes parent provides the value injected with `inject`. This means that if we...
vuejs/core#7982 introduced typing of slots, and it was announced in the release post, however I can't find anything in the docs on how to use this new feature, not in...