Files
GestorTareas/resources/js/Components/SecondaryButton.vue
2026-08-03 18:01:15 +02:00

15 lines
226 B
Vue

<script setup>
defineProps({
type: {
type: String,
default: 'button',
},
});
</script>
<template>
<button :type="type" class="btn btn-outline-secondary">
<slot />
</button>
</template>