edison
edison
Perhaps the usage of `defineModel` should be validated, as it must be assigned to a variable.
Could you please provide more information?
a workaround ```js export default defineConfig({ plugins: [ vue(), ], build:{ assetsInclude: ['**/*.json'] // Treat the JSON file as a resource file } }); ```
a workaround ```ts export default defineConfig({ plugins: [vue({ template:{ compilerOptions:{ hoistStatic: false } } })], }) ```
Please note that the PR has been merged and not release yet.
/ecosystem-ci run
@skirtles-code the tests are all green after re-run. I think the document https://v3-migration.vuejs.org/breaking-changes/watch.html should also be updated. It is also possible that it should be merged into the minor branch...
the recommended way is ```vue ``` see https://vuejs.org/guide/built-ins/suspense.html#combining-with-other-components
According to the reproduction in #12427, the issue likely lies within `toRef`. If `source` is an array and the `key` is a number, the `key` should be converted to a...
@yakudik Please provide a **minimal** reproduction.