merge
This commit is contained in:
parent
0667120de5
commit
1089938956
10 changed files with 122 additions and 77 deletions
8
src/stores/page.js
Normal file
8
src/stores/page.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import { defineStore } from "pinia";
|
||||
import { ref } from "vue";
|
||||
|
||||
export const usePageStore = defineStore("page", () => {
|
||||
const page = ref(null);
|
||||
|
||||
return { page };
|
||||
});
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
import { defineStore } from "pinia";
|
||||
import { useApiStore } from "./api.js";
|
||||
import { ref, computed } from "vue";
|
||||
import { useUserStore } from "./user.js";
|
||||
|
||||
export const useProjectsStore = defineStore("projects", () => {
|
||||
const projects = ref([]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue