Some changes

This commit is contained in:
2024-07-01 17:29:57 +02:00
parent 15271a873b
commit 673eb10b7b
7 changed files with 53 additions and 11 deletions

9
src/stores/user.store.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
export const useUserStore = defineStore('user', () => {
const username = ref<string>();
return {username};
})