vue-facing-decorator icon indicating copy to clipboard operation
vue-facing-decorator copied to clipboard

Vue typescript class component decorators

Results 19 vue-facing-decorator issues
Sort by recently updated
recently updated
newest added

In the old vue class components we could define a public static function which would be callable from other components/locations. This original functionality is defined here i believe: https://github.com/vuejs/vue-class-component/blob/master/src/component.ts#L119 Anyhow...

How do I add a validator function for an Emit?

How to do that ``` @Component({ mixins: [{ provide: { [key]: do some things } }] }) ``` https://vuejs.org/api/options-composition.html#mixins

That is for class methods may be properties. How to make custom class decorator like Component using that package.

``` @Component export default class MyComponent extends Vue { // constructor( ) { // super() // expets 2 arguments // } } ``` What to put in, where? ``` new...

When extends components, the following problem occurs: **Class extends value # is not a constructor or null** Both classes are in seperated .vue files and contain template and css. With...

![image](https://github.com/user-attachments/assets/cc7c3844-3508-4a19-8dc2-fe6ca2e71228) package.json ``` { "name": "vue-project-templete", "version": "0.0.0", "private": true, "type": "module", "scripts": { "dev": "vite", "build": "run-p type-check \"build-only {@}\" --", "preview": "vite preview", "test:unit": "vitest", "build-only": "vite build",...

Hello, I’ve tried a fresh install of vue3 with vue-facing-decorator, but it does not work out of the box. The documentation is lacking informations about how to use babel (so...

I just spent much more that I wish anybody should have, just to realize that there are too many ways to write code with `definePageMeta`, but only single one works...