vue-typescript icon indicating copy to clipboard operation
vue-typescript copied to clipboard

Typescript decorators to make vue feel more typescripty

Results 11 vue-typescript issues
Sort by recently updated
recently updated
newest added

Hi, am wondering what the current idioms are for Vue dat array handling in vue-typescript? i.e: 1. adding an element to an array? 2. removing an element from an array?...

Hi, just wondering how you'd insert a inside another template? e.g: ``` @VueComponent({ template: ` Welcome to coligo! login signup Check out the other tutorials! ` }) export class ClassA{...

Extending Vue doesn't seem to make any difference?

Hi, have been using vue-typescript with: - Typescipt 1.8.10 and - vue 1.26 works great!! So, am wondering if I can expect any issues upgrading to Typescript 2.0? Thanks again...

I'm attempting to set this up to work with Vue 2.0. First thing I had to do was edit the definitions from definitely typed for Vue so that it exports...

Hi, am noticing that production builds with webpack don't register custom components! (even though this works fine with webpack-dev-server). So, am not sure if this is a vue-typescript, ts-loader, or...

Hi, in your Readme, you describe both: ``` @VueComponent({ template: ... }) export class ComponentOne{ } ``` and ``` @VueComponent({ template: ... }) export class ComponentOne extends Vue{ } ```...

Hi, wondering how to get TSX to work? I followed general tsx advise from: https://basarat.gitbooks.io/typescript/content/docs/jsx/tsx.html - Use files with the extension .tsx (instead of .ts). - Use "jsx" : "react"...

e.g. computed: { ``` example: { cache: false, //no cache get: function () { return Date.now() + this.msg } } } ``` in vue-typescript, how to get this feature by...