I have something like this in my .vue template:
<plasmid id='p1' plasmidheight="800" plasmidwidth="800" v-bind:sequencelength="sequenceLength">
I use Vue.js to manipulate the sequencelength attribute and then add a piece of code that manipulates that to create an svg element.
Now when sequenceLength changes, Vue doesn't update the view because it is no longer the <plasmid> tag but an svg component.
I therefore need to re-render the component, my attempts to use $forceUpdate() have not worked.