designtopack/src/components/Btn.vue
isUnknown e816ff2420 save
2024-09-02 14:33:21 +02:00

11 lines
167 B
Vue

<template>
<button :data-size="size">Label</button>
</template>
<script setup>
const { size } = defineProps({
size: String,
});
</script>
<style scoped></style>