[Vuejs]-Hot to add text to svg

1👍

I assume you can use <text> SVG tag.

If you using Vue.JS it will be something like:

<text>{{ path.id }}</text>

More detailed about <text> tag you can read here:

https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text

P.S. Your code snippet seems a little bit broken.

Leave a comment