🎨登陆页面以及用户列表操作

This commit is contained in:
2024-05-18 01:11:46 +08:00
parent 0d8f6b314b
commit 316ff4a2b2
42 changed files with 1105 additions and 369 deletions

View File

@@ -0,0 +1,7 @@
import { getCurrentInstance } from "vue";
export default function useGetGlobalProperties() {
const instance = getCurrentInstance();
const globalProperties = instance?.appContext.config.globalProperties;
return { ...globalProperties };
}