This commit is contained in:
Zy
2026-04-06 14:45:50 +08:00
commit f414026af8
373 changed files with 30667 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { defineStore } from 'pinia';
import { reactive } from 'vue';
export const useHouseStore = defineStore('house', () => {
const state = reactive({
// 小区信息
communityInfo: {},
// 楼栋信息
houseList: [],
// 房屋信息
houseInfo: {}
});
return {
state
};
});