15 lines
220 B
Vue
15 lines
220 B
Vue
<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>
|