<script setup lang="ts">
interface IDetailProps {
label?: string;
color?: string;
unelevated?: boolean;
}
const props = withDefaults(defineProps<IDetailProps>(), {
label: '',
color: 'primary',
unelevated: true,
});
</script>
<template>
<q-btn v-bind="props" />
</template>
-
hucy authored5be72b45