Igor Randjelovic

Results 388 comments of Igor Randjelovic

Sure, here are all the changes that I made to make it work A diff of the changes I made ```diff diff --git a/package.json b/package.json index c4a3bdf..3575594 100644 --- a/package.json...

@curtiscarlson where did you find `android-focusable`? I can't find it in the NativeScript API docs. The general rule of thumb is that all properties from the API docs can be...

In 2.0 we made everything a functional vue component, this unfortunately introduced an issue with v-model. I don't remember the exact issue, but will track it down and hopefully release...

You can try `created()` instead of `mounted()` - the issue is likely that `mounted` is called after the even has already happened...

`launchEvent` happens before any Vue instance is created

See how you may still handle these events, and make reactive state changes... https://play.nativescript.org/?template=play-vue&id=xeOAC7&v=1

That's normal, root `created()` is called as soon as it hits `new Vue(`, but the rest are only called after the `$start()` calls the nativescript `Application.run()` methods, so that's a...

You may be overthinking this - you could just do any checks you need in the `created` callbacks. Another thing you can do is render a "Loading" component as the...

KeepAlive is supported, but not for every element. It does not work with Frames, Pages due to the way they work in NativeScript. In other cases, you can use KeepAlive...

@Shuunen I don't see why ```js import Vue from 'nativescript-vue' Vue.prototype.$navigateTo(component, options) ``` wouldn't work - there was an old version that required a view instance to navigate - thus...