farfromrefuge

Results 1299 comments of farfromrefuge
trafficstars

@rigor789 that s weird. N webpack templates do not allow mjs files: https://github.com/NativeScript/nativescript-dev-webpack/blob/master/templates/webpack.typescript.js#L121

I managed to get this to work by registerElement within my webpack config. However it requires a change to ```nativescript-vue-template-compiler```, ```registerElement``` needs to be exported so that we can use...

@msaelices look at what I do [here](https://github.com/cairn-monnaie/CairnMobile/blob/master/webpack.config.js) I use the registerElement from nativescript-vue. This is essential with vue files because XML is transformed into JSon which must already contains the...

@msaelices awesome! thanks a lot. And yes a better fix is needed. I actually do the same exact thing in web pack and in my runtime. Which should not be...

@msaelices i just started to face the same issue. This needs a fix. The "dirty" solution as @msaelices said is really dirt and goes against cell reuse

@msl2000 use an ObservableArray and update items as they get selected/unselected. This is what i do and it is very performant!

@mono424 you ask about your issue (and give more details) on N slack or Discord

I have always had issue with vue elements and console. The issue I think is simlply that vue objects are objects (:)) and don't have toString and toJSON methods And...

@jarmani not really any code to point to. Simply console log a vue instance. Also I want to point that not having a toString method can really impact performance if...

@NathanaelA no benchmark no. Just globally faster as you loop through new props only once and loop through less old properties. Would be nice to have benchmarks around all that...