1 min readOct 23, 2019
Hi, Yonas!
It might feel inefficient but I use this same approach for complex SVGs too. Only difference is that I would prepare the inner html of a SVG as single string, would remove the <path :d=”path” a> and use v-html attribute on SVG element e.g. <svg v-html=”svgContent” />
Cheers!