feat(projects): 添加表格页面示例

This commit is contained in:
Soybean
2021-12-12 21:43:26 +08:00
parent 230a50a4cf
commit 51c744c8e2
8 changed files with 123 additions and 11 deletions

View File

@ -2,11 +2,11 @@ import { useAuthChangeEvent } from './auth';
export function useGlobalEvent() {
/** 初始化全局监听事件 */
function initGlobalListener() {
function initGlobalEventListener() {
useAuthChangeEvent();
}
return {
initGlobalListener
initGlobalEventListener
};
}