Files
nuxtci/app/components/nuxt-template.vue
valere 33a19090c6
All checks were successful
Deploy App / build (push) Successful in 28s
Deploy App / deploy (push) Successful in 14s
templates: add features
2025-10-11 21:38:47 +02:00

17 lines
478 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>