INIT
This commit is contained in:
commit
c04f9e66ca
21 changed files with 12436 additions and 0 deletions
15
components/Button/Button.vue
Normal file
15
components/Button/Button.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<style scoped src="./Button.css"/>
|
||||
|
||||
<template>
|
||||
<button :label="label" class="Button">
|
||||
{{ label }}
|
||||
</button>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
type Props = {
|
||||
label : string
|
||||
}
|
||||
|
||||
defineProps<Props>()
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue