vuetype icon indicating copy to clipboard operation
vuetype copied to clipboard

Generate TypeScript declaration files for .vue files

Results 11 vuetype issues
Sort by recently updated
recently updated
newest added

` Error: File '/path/to/project/src/components/@/components/tables/EventPublication.vue.ts' not found.` And `Error: Cannot find module '@/common/assets/icons/close.svg'.`

Any chance you might be able to start with a Vue 3-compatible branch, even if experimental? Thanks!

used the @vue/cli beta to generate a typescript project. I am getting the errors below when I try to generate the type files Emit Failed: C:\Users\rkk501\Documents\VsCode\t3\t3\src\components\HelloWorld.vue.d.ts Error: Cannot find type...

As opposed to #19, it does not work with non-class decorator components. The fixture is not using the correct way of one should write components with TypeScript, thus the tests...

When I have `foo.vue` in `src`, then `vuetype src/` will generate `foo.vue.d.ts` instead of `foo.d.ts`. I use the pattern `import Foo from "./foo"` everywhere in my project and now I...

Given the following: ``` //imports here interface ICustomer { expanded: boolean item: ICustomerResponse } @Component export default class Customers extends Vue { selectedCustomer: ICustomer | null = null; } ```...

I am currently running into an issue where vuetype refuses to generate a typing definition file for one of my Vue files due to json module imports that the TypeScript...

Hi. Is it possible to specify path where to save created .d files? By default is it created next to .vue file. Thanks.

Would be nice if ``` html ``` would be supported. Current workaround is a bit ugly: ``` vue export { default } from "./MyComponent"; ```

Generate `.d.ts` file failed if the `.vue` file used `this.$route`. Here is a `SFC` file in my project. ``` Hello {{foo}} import Vue from 'vue' import Component from 'vue-class-component' @Component({...