7e1aa5807d
add primary & secondary button & actionfield
27 lines
586 B
Vue
27 lines
586 B
Vue
<template>
|
|
<component
|
|
:is="elementType"
|
|
role="button"
|
|
class="inline-flex items-center rounded border-2 border-gray-100 px-4 py-2 text-gray-700 transition hover:border-red-800 hover:bg-red-800 hover:text-white dark:border-neutral-600 dark:text-neutral-200"
|
|
v-bind="attrs"
|
|
>
|
|
<slot />
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const props = defineProps({
|
|
as: {
|
|
type: String,
|
|
default: 'button',
|
|
},
|
|
});
|
|
|
|
const elementType = computed(() => props.as);
|
|
|
|
const attrs = computed(() => {
|
|
const { as, ...rest } = props;
|
|
return rest;
|
|
});
|
|
</script>
|