[Vuejs]-Vue and d3 force layout, network visualization

0👍

In computed() you define variables that update the DOM at runtime, calling a method there without assigning a returned value or object to a variable is wrong. You should try moving this.data_vis() into the mounted() hook instead.

Leave a comment