Initial commit

This commit is contained in:
René Preuß
2022-10-30 14:15:45 +01:00
commit 473c69869d
18 changed files with 515 additions and 0 deletions

21
components/Button.vue Normal file
View File

@@ -0,0 +1,21 @@
<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: "Button",
methods: {
click() {
this.$emit('click');
}
}
}
</script>
<style scoped>
</style>