Timar
Timar
This is the bugi came here to post. Thank you for this solution: @mesqueeb `` I will use this for now.
We get the point of Virgil, but even in handwriting people try to align things more than less. Also the font doesn't have glyphs for arrows... It's fine in excalidraw...
I see your point. You could try to use dynamic components. https://vuejs.org/v2/guide/components-dynamic-async.html This would allow you to render a completely different interface dynamically. The modularity would also allow to structure...
Im not familiar with the source code, so I don't know if a pull request or a workaround would be more feasable. Certainly any workaround that deveates too much would...
It is possible to add routes browserside: I did a rough experiment, youd have to find how to do it thorugh a plugin. I Imagine it being similar: ```js //...
Works for me. Any code you can share? Do you do it like this? `SVGMobject("svgfile.svg")`
+1 for that
I would like this too, I have implemented the mergin strategy but through a lot of trial and error. And although it works, I'm not sure if it might not...
I wanted to share my merging strategy plugin that fixes an important bug when importing multiple mixins. ```js import Vue from 'vue' Vue.config.optionMergeStrategies.i18n = function (parentVal, childVal) { return (childVal...
I am currently working on generating dynamic routes and providing payloads within the nuxt generate hooks. If it wasnt for your bug fix of the **generate timeout** I would have...