Nick Zuccarelli
Nick Zuccarelli
Thanks @kimberley2310 :) If I come across any issues next week I'll be sure to shoot a msg across
Refer to: https://matteo-gabriele.gitbook.io/vue-gtag/multiple-domain-tracking
I haven't had this warning pop up for me. If possible could one of you guys please add a replication link and browser details? I'll try take a look at...
Just an update. Majority of functionality is working again. Still a fair bit of code cleanup that I need to do, but progress is definitely being made! :)
Stuck on quite a doozy right now! Because of the Vue3 behaviour for rendering v-if, slots and v-for loops, I am unable to get DropList working as it does on...
I've tried all these steps unfortunately without luck. > due to templates with v-ifs. Performance improvements in the virtual dom diffing algorithm may cause Vue 3 to be less smart...
I can't add `key = "mykey"` to the tempaltes because it complains with ` cannot be keyed`. So it must internally key them. But yes you're right about the v3...
Great news. Using `render()` has worked! 🥳 Thanks for that @rlemaigre I am going to be writing all the main components using render() as it seems more efficient
A separate component won't work because it still requires separate if/else states which will still cause the render of separate keys. As far as I can see render() is the...
Heres how I understand it now works in Vue3: For example: `` // internal key: A `` // keys 1-5 `` // internal key: B `` // keys 1-5 ``...