first commit

This commit is contained in:
René Preuß
2023-03-01 19:24:20 +01:00
commit 4ab5e76d85
45 changed files with 1963 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<template>
<button
type="button"
@click="$emit('click')"
class="bg-primary-500 py-1.5 px-4 rounded text-white"
>
<slot/>
</button>
</template>
<script lang="ts">
export default {
name: "VButton",
emits: ['click']
}
</script>