Igor Randjelovic

Results 388 comments of Igor Randjelovic

They are in the initial webpack chunk yes, though they are not "loaded" as-in the contents/components. The bundle contains something like this: ```js // bundle.js - pseudo version, omitting webpack...

@MrSnoozles it's odd that it even worked prior, nesting a dynamic component under a frame is undefined behavior. The only supported behavior is setting the initial/default page by nesting it...

The url for the Community Slack is here: https://www.nativescript.org/slack-invitation-form - Not sure where you found the old one - but it is no longer used! These variants should be working:...

Your animation classes were incorrect, see working example: https://play.nativescript.org/?template=play-vue&id=lFqz9J&v=2 I added a `bounce-out` keyframe group, but might work with `animation-direction: reverse` too.

This works: https://play.nativescript.org/?template=play-vue&id=0oJpz3&v=6 I registered Test as a global component. The issue is because of recursive/circular imports: ``` HelloWorld imports Test Test imports HelloWorld HelloWorld imports Test Test imports HelloWorld...

This is an `ios-runtime` issue - specifically the JavaScriptCore runtime. Can you try the new v8 runtime, and see if that works better? In your package.json, change the ios runtime...

@Znegl not sure what would cause that - I built a project with the v8 runtime today, and it worked fine. Can you try deleting `platforms`, `hooks` and `node_modules` and...

@msaelices has been trying to get vue test utils to work in ns. (https://github.com/nativescript-vue/nativescript-vue/pull/486) @bryanleetc Out of curiosity, what would you expect to be able to test with the test...

I was trying to figure out how this could be done - but haven't figured out anything useful... It's generally a bad idea to alter user input while the user...