Flo Edelmann
Flo Edelmann
No, please see the comment thread above. If a fix or workaround can be found (and it's not clear if that's possible at all), it will be commented here. Please...
In Vue 3.3, you can now use `defineOptions` in `` and avoid this issue altogether, see https://blog.vuejs.org/posts/vue-3-3#defineoptions and https://vuejs.org/api/sfc-script-setup.html#defineoptions. ```vue import foo from './foo.vue' defineOptions({ name: 'HomeIndex' }) ```
This was implemented as the new [`vue/v-on-handler-style`](https://eslint.vuejs.org/rules/v-on-handler-style.html) rule in #2009.
Note that the [`vue/v-on-function-call`](https://eslint.vuejs.org/rules/v-on-function-call.html) rule was deprecated in favor of the new [`vue/v-on-handler-style`](https://eslint.vuejs.org/rules/v-on-handler-style.html) rule in #2009. Is this request solved with the new rule? If it isn't, please open a...
Since this issue is very old and the behavior is intended, I'll close it now.
Vue Class Component is no longer actively maintained and not recommended for Vue 3: https://class-component.vuejs.org/ > This library is no longer actively maintained. It is no longer recommend to use...
No news yet. If nobody works on this and opens a PR, no progress will be made. Asking for updates won't speed that up. So if anybody feels entitled to...
@ItMaga Probably all of them are too much effort at the moment. I'd start with only checking events that are defined in the `emits` section (or `defineEmits`). Later, those special...
Currently, as far as I know, nobody is actively working on it. But since the issue is still open and has the `accepted proposition` label, it is open for submissions....
PR welcome. As a workaround, you have to specify the properties manually: ```ts const data = reactive({ a: 1, b: 1, }); return { a: toRef(data, 'a'), b: toRef(data, 'b'),...