Igor Randjelovic
Igor Randjelovic
@farfromrefug I will rewrite the project in typescript this year likely, once the Vue 3's custom renderer API stabilizes. Here is the proposal: https://github.com/vuejs/vue/issues/7005 (And it's being worked on) So...
Seems like a bug in core, but if you add `selectedTabTextColor` it works fine. https://play.nativescript.org/?template=play-vue&id=AX9LTB&v=2 Error seems to be thrown at this point https://github.com/NativeScript/NativeScript/blob/2d63c9f276b36fc4d5fea2bd2053cce2bb26b694/tns-core-modules/ui/tab-view/tab-view.ios.ts#L579 The conditional checks if `tabItemTextColor` is...
The camelCase properties are coming from tns-core-modules. The workaround that I can think of would involve checking all properties of the target element, and that would likely introduce computational overhead.
Not at the moment, there are `$navigateTo`, `$navigateBack` APIs for navigating, and there's this community plugin that I believe works: https://www.npmjs.com/package/router-vue-native
Setting `config.optimization.noEmitOnErrors(true);` should make this better: ```js webpack.chainWebpack(config => { config.optimization.noEmitOnErrors(true); }) ``` This makes sure webpack doesn't emit any files when there are any compilation errors. This is not...
Thanks for the PR, I'll need to run some tests, at a glance, seems this would wipe the shared/global context. In fact I was looking at using provide/inject to handle...
> Looking at this PR again, this implementation does work fine because one can't show multiple modals at once on mobile apps, unlike web apps. You can stack multiple modals...
No documentation coverage yet - the `event.item` was added by vue2, and haven't done the same in v3 yet. NativeScript itself only includes the `event.index`, so for convenience it was...
Try `loaded` or `Application.displayed` events - mounted is called before the native app is fully booted so possible that these are still undefined.
There's a community package that I believe adds all the correct types, see https://www.npmjs.com/package/@nativescript-dom/vue-types