docs
docs copied to clipboard
📄 Documentation for Vue 3
This PR adds docs for https://github.com/vuejs/core/pull/13861 and https://github.com/vuejs/core/pull/13908
Bumps [vue](https://github.com/vuejs/core) from 3.5.24 to 3.5.25. Release notes Sourced from vue's releases. v3.5.25 For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the...
This PR removes the mention of linking computed properties to the instance of a component in order to be stopped. If I'm not mistaken, this is no longer how computed...
Hey 👋, Following https://github.com/rolldown/rolldown/pull/7135, I'm also adding this to the Vue.js documentation. Currently, the template is missing, I'll create it later but if you have any idea about the design,...
## Description of Problem Removed the ambiguous line “This works in versions before 3.5. In addition”. The onCleanup callback argument remains available in 3.5+, so the old note could mislead...
## Hello Vue.js Team! First of all, thank you for maintaining such excellent documentation for the Vue.js ecosystem. The docs have been incredibly helpful for developers worldwide. ## Suggestion I...
## What This Does This adds a tip box to the `template-syntax.md` guide explaining that Vue-specific attributes like `v-if`, `@click`, and `v-bind` may appear as invalid in HTML validators or...
# [docs] Clarify typing with `computed` vs return annotation (excess property checks) ## Summary The [docs](https://vuejs.org/guide/typescript/composition-api.html#typing-computed) recommend typing a computed value with a generic: ```ts const double = computed(() =>...
There's no more error and types also allow for directly passing objects as the default value. ## Description of Problem In Vue2 passing objects as a default would cause an...
## Description of Problem ## Proposed Solution ## Additional Information 经测试发现,当前 Vue 版本中 attrs 和 slots 已经是响应式的。 Testing shows that in the current Vue version, attrs and slots are reactive....