CommentDec 25, 20161
A few months late... We had to port our D3 charting to Vue.js recently. We decided that instead of using D3's DOM manipulation, it would be much better if we relied solely on Vue thus maintaining reactivity etc. It turned out to be relatively easy: Define the SVG elements in your Vue template, which gives you bindings etc Use D3 to calculate the d property of each element in mounted() , watchers, computed properties Example Corresponding blog post