This commit is contained in:
René Preuß
2023-02-17 20:03:10 +01:00
parent 23eae8b651
commit 6f32d46437
42 changed files with 690 additions and 5387 deletions

View File

@@ -0,0 +1,25 @@
<template>
<a
href="#"
class="truncate text-black dark:text-white hover:bg-zinc-100 dark:bg-base-700 dark:hover:bg-base-600 dark:text-white rounded-lg px-4 py-2"
>
<slot />
</a>
</template>
<script>
export default {
name: "BitinflowButton",
emits: ['click'],
methods: {
click() {
this.$emit('click');
}
}
}
</script>
<style scoped>
</style>