Some changes
This commit is contained in:
9
src/stores/user.store.ts
Normal file
9
src/stores/user.store.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { defineStore } from 'pinia'
|
||||
import { ref } from 'vue'
|
||||
|
||||
|
||||
export const useUserStore = defineStore('user', () => {
|
||||
const username = ref<string>();
|
||||
|
||||
return {username};
|
||||
})
|
||||
Reference in New Issue
Block a user