vue-class-component icon indicating copy to clipboard operation
vue-class-component copied to clipboard

ES / TypeScript decorator for class-style Vue components.

Results 100 vue-class-component issues
Sort by recently updated
recently updated
newest added

In the `shims-vue.d.ts` file: ```typescript import Vue from 'vue'; declare module 'vue/types/vue' { interface Vue { $messageBox: any; } } declare module '*.vue' { import Vue from 'vue'; export default...

Hi, I'm excited to announce the release of [vue3-class-component], a new version of the Vue class component that brings support for Vue 3.x! You can find it here: - [vue3-class-component...

Hello especially to the maintainers of this repo. Looks like last update was 2 years ago. I created an issue regarding class component support for vue3 (https://github.com/vuejs/vue-class-component/issues/402) Is it ded?

It looks like v8 rc was released a long time ago. When is the final version expected?

Here you can read a post from Evan You @yyx990803 https://github.com/vuejs/vue-next/issues/4744#issuecomment-937369062 I feel like this library is not maintained anymore. Maybe it's time to deprecate it? `vue-class-component` made sense for...

Hey there :wave:Our bot, Adaptly, found that 20 out of 20 currently open dependency update PRs can be merged.That's 100% right there:View Safe to Merge PRs1. [build(deps): bump express from...

Repro: https://github.com/sp00x/vue-typescript-name-bug 2 components, Foo (ts) and Bar (js) registered as global components in main.ts using ``` import Foo from '@/components/Foo.vue'; import Bar from '@/components/Bar.vue'; Vue.component(Foo.name, Foo) // typescript Vue.component(Bar.name,...

v8

## Summary - Composition functions are available in class property initializers by wrapping `setup` helper. - Class property initializers are handled in `setup` function under the hood. - Only `$props`...

v8

vue-class-component 7.2.4 added a `dist/vue-class-component.d.ts` file with an interface `ClassComponentHooks` which defines an optional `unmounted()` method. However, in Vue 2 this lifecycle hook is actually called `destroyed()` (it’s renamed to...