FreeDATA/gui/src/components/grid/button.vue

14 lines
356 B
Vue
Raw Normal View History

2023-12-09 10:21:47 +00:00
<script setup lang="ts">
import { defineProps } from "vue";
const props = defineProps(["btnText", "btnID"]);
2023-12-09 10:21:47 +00:00
function emitClick() {
window.dispatchEvent(new CustomEvent("add-widget", { detail: props.btnID }));
2023-12-09 10:21:47 +00:00
}
</script>
<template>
<button class="btn btn-small btn-outline-secondary" v-on:click="emitClick">
{{ btnText }}
</button>
2023-12-09 10:21:47 +00:00
</template>