mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
16 lines
443 B
Vue
16 lines
443 B
Vue
<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>
|