File "SamplePage.vue"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/resources/scripts/customer/views/SamplePage.vue
File size: 443 bytes
MIME-type: text/html
Charset: utf-8

<template>
  <div class="bg-blue-100 h-screen container mx-auto px-6">
    <h1 class="text-xl font-bold">Samplez Pages</h1>
    <BaseButton>Hello </BaseButton>
    <BaseCheckon>{{ customerStore.customers }} </BaseCheckon>
  </div>
</template>


<script setup>
import BaseCheckon from '@/scripts/customer/BaseCheckon.vue'
import { useCustomerStore } from '@/scripts/customer/stores/customer'

const customerStore = useCustomerStore()
</script>