File "BaseEmptyPlaceholder.vue"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/resources/scripts/components/base/BaseEmptyPlaceholder.vue
File size: 622 bytes
MIME-type: text/html
Charset: utf-8

<template>
  <div class="flex flex-col items-center justify-center mt-16">
    <div class="flex flex-col items-center justify-center">
      <slot></slot>
    </div>
    <div class="mt-2">
      <label class="font-medium">{{ title }}</label>
    </div>
    <div class="mt-2">
      <label class="text-gray-500">
        {{ description }}
      </label>
    </div>
    <div class="mt-6">
      <slot name="actions" />
    </div>
  </div>
</template>

<script setup>
const props = defineProps({
  title: {
    type: String,
    default: String,
  },
  description: {
    type: String,
    default: String,
  },
})
</script>