Skip to content

Instantly share code, notes, and snippets.

@clementbat
Created March 3, 2019 18:08
Show Gist options
  • Save clementbat/6372493be8c07f7691732af29f8e8c9e to your computer and use it in GitHub Desktop.
Save clementbat/6372493be8c07f7691732af29f8e8c9e to your computer and use it in GitHub Desktop.
<svg :width="width" :height="height">
<g v-for="rectangle in rectangles" fill="grey">
<rect
:x=rectangle[0]
:y=rectangle[1]
:width=rectangle[2]
:height=rectangle[3]
style="stroke-width:1;stroke:white"/>
<text
:x="rectangle[0] + rectangle[2] / 2"
:y="rectangle[1] + rectangle[3] / 2"
fill="white">
{{getLabel(rectangle)}}
</text>
</g>
Sorry, your browser does not support inline SVG.
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment