MyBtn.vue 287 Bytes
<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>