Jared McAteer

Results 31 comments of Jared McAteer

Problems I've run into so far: - `DefaultRoute` is now `IndexRoute.` - Route, IndexRoute object now on root level as Router - `var Router = require('react-router').Router;` - `var Route =...

Everything up to and including version 9 is Vue 2. You have to go out of your way to install the RC version 10 that supports Vue 3. Highly recommend...

instead of making the name dynamic make it a static name and Vue makes the template Ref an array ```vue {{index}} import {Ref,Options,Vue} from 'vue-property-decorator' export default Text extends Vue{...

@rene-dohan I would say doing it that way defeats the purpose of single file components. It's fine if you want to split it your code to work around this issue...

> Interestingly, in my testing with the latest Vue CLI, I can indeed export a type from a `.vue` file and import it into another `.vue` file. But I cannot...

Unfortunately I don't have a lot of spare time these days. Our project won't be upgrading to vue3 in the near future so I won't be able to justify working...

I have no good thoughts on what's involved. The core contributors appear to have moved on and the project is receiving no active development from anyone. I contacted the owner...

I was having problems writing an upgrade in this ngVue package that supported both Vue 2 and 3. I decided to re-write ngVue from with Vue 3 support only in...

Anyone looking for a workaround if the folder was empty like it was for me, just remove it. Otherwise you can mv the folder and then copy the files back...

Any update to the `v-props` (or `v-props-`) directive in your angular template should trigger an update cycle in your vue component. Please have a look at the caveats readme for...