Files
nuxtci/app/components/nuxt-template.vue
valere 6635e3403a
All checks were successful
Deploy App / test (push) Successful in 11s
Deploy App / deploy (push) Successful in 1m32s
test
2025-09-20 00:30:15 +02:00

17 lines
476 B
Vue

<template>
<h1 class="flex flex-col gap-y-4 items-center justify-center flex items-center justify-center min-h-screen">
<img src="/logo.svg">
<div class="absolute top-4 right-4">
<button class="block p-4 bg-black text-slate-400" @click="store.addData()">add to 🍍</button>
<pre>
{{ store.getDatas }}
</pre>
</div>
</h1>
</template>
<script setup>
import { useTestStore } from '@/store/testStore'
const store = useTestStore()
</script>