docs
docs copied to clipboard
📄 Documentation for Vue 3
[According to Vue 3.4 docs](https://vuejs.org/guide/reusability/plugins), if I want to define a custom plugin, I need to create it like this: ```[typescript] // my-custom-plugin.ts export default { install: (app, options) =>...
Bumps [vue](https://github.com/vuejs/core) from 3.4.29 to 3.4.31. Release notes Sourced from vue's releases. v3.4.31 For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the...
Added links to Vue 2 EOL and HeroDevs NES Vue 2 support in the home page and sidebar. **Home Page**   **Sidebar**  
## Description of Problem ## Proposed Solution ## Additional Information
This code in typescript triggers a confusing Error: ```ts export interface Props { msg?: string labels?: string[] } const props = withDefaults(defineProps(), { msg: 'hello', labels: ['one', 'two'] }) ```...
## Description of Problem There is a broken link (component.studios) in https://vuejs.org/guide/scaling-up/tooling.html#other-online-playgrounds. I've proposed a solution in their repository, but the last activity is from 3 years ago. ## Proposed...
It was suggested that this is the best place to document the tsconfig setup output by create-vue. I've written much of this doc already, over at https://github.com/vuejs/create-vue/issues/265, though I need...
We are currently planning to develop a vscode extension that can quickly access various technical documents, but it is not accessible due to the frame-ancestors settings of the official documentation...
## Description of Problem change type of withModifiers param update documentation to reflect the change in #10856, where the type of the second parameter of withModifiers was changed from string[]...