Slightly off topic, but is anyone aware of a collection of examples or best practices for using d3 in a Vue application? I just started with d3 and I‘m not sure how to find the sweet spot regarding which DOM-operations are done by d3 and which should be handled by vue (and if that, how).
I'm in this situation and yesterday I replaced all the d3 SVG generation (d3.append, select, data, join, etc) with Vue template syntax (using v-for). So now I'm only using d3 for the x and y axis functions. The code is now much simpler. However, I lost the ability to animate with d3.transition, which I had been contemplating.