Created
March 29, 2019 08:02
-
-
Save simonwuyts/abb1a369b078df796bf9d416987aed34 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<svg width="500" height="500"> | |
<g | |
class="flower" | |
v-for="flower in layoutData.children" | |
:key="flower.data.name" | |
:style="{ | |
transform: `translate(${flower.x}px, ${flower.y}px)` | |
}" | |
> | |
<circle | |
class=“flower__circle" | |
:r=“flower.r" | |
:fill=“flower.data.color" | |
/> | |
<text class=“flower__label”> | |
{{ flower.data.name }} | |
</text> | |
</g> | |
</svg> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment