13 lines
196 B
Vue
13 lines
196 B
Vue
<script lang="ts">
|
|
export default {
|
|
name: 'ControlButton',
|
|
compatConfig: { MODE: 3 },
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<button class="vue-flow__controls-button">
|
|
<slot />
|
|
</button>
|
|
</template>
|