refactor(controls): move controls into separate package

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2022-12-13 14:55:14 +01:00
committed by Braks
parent 2eaf9e4340
commit a55f39ba25
17 changed files with 348 additions and 56 deletions
+11
View File
@@ -0,0 +1,11 @@
<script lang="ts">
export default {
name: 'ControlButton',
}
</script>
<template>
<button class="vue-flow__controls-button">
<slot></slot>
</button>
</template>