add nova
This commit is contained in:
19
nova/resources/js/components/Buttons/InertiaButton.vue
Normal file
19
nova/resources/js/components/Buttons/InertiaButton.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<script setup>
|
||||
import { Button } from 'laravel-nova-ui'
|
||||
|
||||
const props = defineProps({
|
||||
href: { type: String, required: true },
|
||||
variant: { type: String, default: 'primary' },
|
||||
icon: { type: String, default: 'primary' },
|
||||
dusk: { type: String, default: null },
|
||||
label: { type: String, default: null },
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Link :href="href" :dusk="dusk">
|
||||
<Button as="div" :variant="variant" :icon="icon" :label="label">
|
||||
<slot />
|
||||
</Button>
|
||||
</Link>
|
||||
</template>
|
||||
Reference in New Issue
Block a user