0👍
There is no layer
component in vue-konva
. You have to use v-layer
:
<v-stage :config = "stage">
<v-layer>
<v-circle :config = "{radius: 10, fill: 'blue'}"/>
</v-layer>
<v-layer>
<v-circle :config = "{radius: 10, fill: 'blue'}"/>
</v-layer>
</v-stage>
- [Vuejs]-How to change vuejs component data on one device when data in db updated by other device without refresh page
- [Vuejs]-Active state from v-list-item stuck to false on load – Vuetify
0👍
yes my bad it was v-layer it was a mistake when i rewrote it here, sorry.
I used v-layer and it didn’t get the expected result it only shows the first shape and get errors.
- [Vuejs]-@click bound to each item within v-for loop executed many times when clicking
- [Vuejs]-Invalide date after converting epoch time vue.js
Source:stackexchange.com