Igor Randjelovic

Results 388 comments of Igor Randjelovic

Awesome Idea, I have used this myself: [![Vue 2.x](https://img.shields.io/badge/Vue-2.x-brightgreen.svg)](https://vuejs.org/v2/guide/) Most places refer to `vue 2` as `2.x`.

Thanks for looking into it @ilyavf - interesting find! I will likely have some time to take a fresh look at this sometime next week, or the week after. What's...

@t-kelly with the above patch you would be able to pass these and I believe would work ``` --commit-path='packages/a shared' ``` (may need some trial & error to confirm)

@farfromrefug I just tested this locally, the build looks fine, however an application that depends on it breaks, as webpack seems to default to the `mjs` file rather than the...

@farfromrefug right, but I think when you are importing an external dependency it doesn't take those into account, and uses the `module` key in `package.json` if set. If I remove...

Update: @farfromrefug and I decided to hold off on the merge, until NativeScript is ESM compatible to avoid accidentally breaking projects with this change!

That's odd - there is nothing that hijacks the event in NativeScript-Vue, it should be the same exact event that nativescript raises. Will have to check this locally

That note is actually incorrect, but it is in git history, and automatically included in the changelog... The `nativeView` you access through refs is the NativeScript view instance, which is...

@groenroos use the `@loaded` event of the view: ```html ``` ```js doWhatever(args) { // the ios native view console.log(args.object.ios) // the android native view console.log(args.object.android) } ``` This is the...

@efegure I have no experience with embedding ns inside a native app - that's why it has been open for a while. Looking at your logs though, I have a...