chore: add @tailwindcss/postcss and PostCSS setup for Tailwind v4

This commit is contained in:
Jennie Robinson Faber 2025-08-09 13:12:54 +01:00
parent 40c249264c
commit 1cee60953e
17 changed files with 263 additions and 7 deletions

18
stores/counter.ts Normal file
View file

@ -0,0 +1,18 @@
import { defineStore } from "pinia";
export const useCounterStore = defineStore("counter", {
state: () => ({
count: 0,
}),
getters: {
doubleCount: (state) => state.count * 2,
},
actions: {
increment() {
this.count += 1;
},
},
persist: {
paths: ["count"],
},
});