Browse Source

fix(core): 调整hooks顺序.

pull/1063/head
colin 1 year ago
parent
commit
d4a0f1c9db
  1. 2
      apps/vben5/packages/@abp/core/src/hooks/useSettings.ts

2
apps/vben5/packages/@abp/core/src/hooks/useSettings.ts

@ -5,8 +5,8 @@ import { computed } from 'vue';
import { useAbpStore } from '../store';
export function useSettings(): ISettingProvider {
const abpStore = useAbpStore();
const getSettings = computed(() => {
const abpStore = useAbpStore();
if (!abpStore.application) {
return [];
}

Loading…
Cancel
Save