🎨 updated comment code framework / add comment verification

This commit is contained in:
landaiqing
2024-09-26 01:15:29 +08:00
parent e4b9214840
commit 96ae754efd
22 changed files with 1997 additions and 1258 deletions

View File

@@ -2,6 +2,7 @@ import {useAuthStore} from '@/store/modules/userStore.ts';
import {useThemeStore} from "@/store/modules/themeStore.ts";
import {langStore} from "@/store/modules/langStore.ts";
import {useClientStore} from "@/store/modules/clientStore.ts";
import {useCommentStore} from "@/store/modules/commentStore.ts";
export default function useStore() {
return {
@@ -9,5 +10,6 @@ export default function useStore() {
theme: useThemeStore(),
lang: langStore(),
client: useClientStore(),
comment: useCommentStore(),
};
}