designtopack/src/components/Btn.vue

12 lines
167 B
Vue
Raw Normal View History

2024-09-02 14:33:21 +02:00
<template>
<button :data-size="size">Label</button>
</template>
<script setup>
const { size } = defineProps({
size: String,
});
</script>
<style scoped></style>