Skip to content

Instantly share code, notes, and snippets.

@simonwuyts
Created March 29, 2019 08:02
Show Gist options
  • Save simonwuyts/abb1a369b078df796bf9d416987aed34 to your computer and use it in GitHub Desktop.
Save simonwuyts/abb1a369b078df796bf9d416987aed34 to your computer and use it in GitHub Desktop.
<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