mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
35 lines
700 B
Vue
35 lines
700 B
Vue
<script setup lang="ts">
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
type?: HTMLButtonElement['type']
|
|
text?: string
|
|
variant?: string
|
|
icon?: string
|
|
block?: boolean
|
|
}>(),
|
|
{
|
|
type: 'button',
|
|
text: undefined,
|
|
variant: 'primary',
|
|
icon: undefined,
|
|
block: false,
|
|
},
|
|
)
|
|
|
|
const variantClass = computed(() => {
|
|
return {
|
|
primary: 'btn-primary',
|
|
success: 'btn-success',
|
|
info: 'btn-info',
|
|
}[props.variant]
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<button class="btn" :class="[variantClass, { 'btn-block': block }]">
|
|
<slot name="default">
|
|
<Icon v-if="icon" :name="icon" size="1.5em" aria-hidden="true" />
|
|
{{ text }}
|
|
</slot>
|
|
</button>
|
|
</template>
|