9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
|
|
import { defineStore } from "pinia";
|
||
|
|
import { ref } from "vue";
|
||
|
|
|
||
|
|
export const useUserStore = defineStore("user", () => {
|
||
|
|
const user = ref(null);
|
||
|
|
|
||
|
|
return { user };
|
||
|
|
});
|