* feat: add theme berry * docs: add development notes * fix: fix blank page * chore: update implementation * fix: fix package.json * chore: update ui copy --------- Co-authored-by: JustSong <songquanpeng@foxmail.com>
10 lines
465 B
JavaScript
10 lines
465 B
JavaScript
// action - customization reducer
|
|
export const SET_MENU = '@customization/SET_MENU';
|
|
export const MENU_TOGGLE = '@customization/MENU_TOGGLE';
|
|
export const MENU_OPEN = '@customization/MENU_OPEN';
|
|
export const SET_FONT_FAMILY = '@customization/SET_FONT_FAMILY';
|
|
export const SET_BORDER_RADIUS = '@customization/SET_BORDER_RADIUS';
|
|
export const SET_SITE_INFO = '@siteInfo/SET_SITE_INFO';
|
|
export const LOGIN = '@account/LOGIN';
|
|
export const LOGOUT = '@account/LOGOUT';
|