15 lines
226 B
Vue
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>
|