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

16 lines
337 B
Vue
Raw Normal View History

2023-12-09 10:21:47 +00:00
<script setup lang="ts">
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>
2024-01-11 03:22:21 +00:00
<button
class="btn btn-small btn-outline-secondary mb-1"
v-on:click="emitClick"
>
{{ btnText }}
</button>
2023-12-09 10:21:47 +00:00
</template>