inncom_list/src/store/project.js

14 lines
242 B
JavaScript

import { defineStore } from "pinia"
export const usrProjectStore = defineStore("project", {
state: () => ({
list: [],
}),
})
export const usrRoomStore = defineStore("room", {
state: () => ({
list: [],
}),
})