30 lines
737 B
Vue
30 lines
737 B
Vue
|
|
<script setup>
|
||
|
|
import EmptyStateLayout from 'dashboard/components-next/EmptyStateLayout.vue';
|
||
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
||
|
|
|
||
|
|
const emit = defineEmits(['click']);
|
||
|
|
|
||
|
|
const onClick = () => {
|
||
|
|
emit('click');
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<EmptyStateLayout
|
||
|
|
:title="$t('CAPTAIN.CUSTOM_TOOLS.EMPTY_STATE.TITLE')"
|
||
|
|
:subtitle="$t('CAPTAIN.CUSTOM_TOOLS.EMPTY_STATE.SUBTITLE')"
|
||
|
|
:action-perms="['administrator']"
|
||
|
|
>
|
||
|
|
<template #empty-state-item>
|
||
|
|
<div class="min-h-[600px]" />
|
||
|
|
</template>
|
||
|
|
<template #actions>
|
||
|
|
<Button
|
||
|
|
:label="$t('CAPTAIN.CUSTOM_TOOLS.ADD_NEW')"
|
||
|
|
icon="i-lucide-plus"
|
||
|
|
@click="onClick"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
</EmptyStateLayout>
|
||
|
|
</template>
|