mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-29 20:51:09 -04:00
v6 update
This commit is contained in:
15
resources/scripts/customer/views/SamplePage.vue
Normal file
15
resources/scripts/customer/views/SamplePage.vue
Normal file
@ -0,0 +1,15 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user