<head> <script src="https://unpkg.com/vue"></script> <script src="https://d3js.org/d3.v4.min.js"></script> </head> <body> <div id="vue"> <svg id="circle-001" :width="width" :height="height"></svg> <div>r: {{ r }}</div> </div> <script> new Vue({ el: '#vue', data: { width: 500, height: 500, r: 75 }, mounted: function(){ var svg = d3.select('#circle-001'); this.circle = svg.append('circle') .attr('cx