17 lines
416 B
TypeScript
17 lines
416 B
TypeScript
|
import { defineStore } from 'pinia';
|
||
|
|
||
|
import { getCommunityStatistics } from '@/api/community';
|
||
|
|
||
|
export const useCommunityStore = defineStore('communityStore', {
|
||
|
state: () => ({
|
||
|
communityStatisticsList: [],
|
||
|
}),
|
||
|
actions: {
|
||
|
/* 社区统计 */
|
||
|
async loadCommunityStatisticsList() {
|
||
|
const result = await getCommunityStatistics();
|
||
|
this.communityStatisticsList = result.data;
|
||
|
},
|
||
|
},
|
||
|
});
|