commit
b7c504ab8f
@ -27,7 +27,7 @@ const recursionMenu = (
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
const useAppStore = defineStore('app', {
|
const useAppStore = defineStore('app', {
|
||||||
state: (): AppState => ({ ...defaultSettings }),
|
state: (): AppState => ({ ...defaultSettings, config: {} }),
|
||||||
|
|
||||||
getters: {
|
getters: {
|
||||||
appCurrentSetting(state: AppState): AppState {
|
appCurrentSetting(state: AppState): AppState {
|
||||||
|
@ -24,5 +24,5 @@ export interface AppState {
|
|||||||
menuFromServer: boolean;
|
menuFromServer: boolean;
|
||||||
serverMenu: RouteRecordNormalized[];
|
serverMenu: RouteRecordNormalized[];
|
||||||
[key: string]: unknown;
|
[key: string]: unknown;
|
||||||
config?: Config;
|
config: Config;
|
||||||
}
|
}
|
||||||
|
@ -184,7 +184,7 @@
|
|||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.login-form {
|
.login-form {
|
||||||
margin-top: 32px;
|
margin-top: 15px;
|
||||||
&-wrapper {
|
&-wrapper {
|
||||||
width: 320px;
|
width: 320px;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user