File "SamplePage.stub"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/invoiceshelf/modules/src/Commands/stubs/resources/scripts/views/SamplePage.stub
File size: 419 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">Sample Page</h1>
<BaseButton>Sample Page</BaseButton>
<h5>Store Example: {{sampleStore.sample}}</h5>
<p>i18n locale: {{$t('sample_category.sample_page')}}</p>
</div>
</template>
<script setup>
import { useSampleStore } from '../stores/sample-store'
const sampleStore = useSampleStore()
</script>