mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 10:42:38 +00:00
56 lines
1.5 KiB
Vue
56 lines
1.5 KiB
Vue
<script setup>
|
|
import Policy from 'dashboard/components/policy.vue';
|
|
|
|
defineProps({
|
|
title: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
subtitle: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
actionPerms: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<section
|
|
class="relative flex flex-col items-center justify-center w-full h-full overflow-hidden"
|
|
>
|
|
<div
|
|
class="relative w-full max-w-[60rem] mx-auto overflow-hidden h-full max-h-[28rem]"
|
|
>
|
|
<div
|
|
class="w-full h-full space-y-4 overflow-y-hidden opacity-50 pointer-events-none"
|
|
>
|
|
<slot name="empty-state-item" />
|
|
</div>
|
|
<div
|
|
class="absolute inset-x-0 bottom-0 flex flex-col items-center justify-end w-full h-full pb-20 bg-gradient-to-t from-n-background from-25% dark:from-n-background to-transparent"
|
|
>
|
|
<div class="flex flex-col items-center justify-center gap-6">
|
|
<div class="flex flex-col items-center justify-center gap-3">
|
|
<h2
|
|
class="text-3xl font-medium text-center text-n-slate-12 font-interDisplay"
|
|
>
|
|
{{ title }}
|
|
</h2>
|
|
<p
|
|
class="max-w-xl text-base text-center text-n-slate-11 font-interDisplay tracking-[0.3px]"
|
|
>
|
|
{{ subtitle }}
|
|
</p>
|
|
</div>
|
|
<Policy :permissions="actionPerms">
|
|
<slot name="actions" />
|
|
</Policy>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|