mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-04-08 04:50:14 +08:00
13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
/**
|
|
* 主进程、渲染进程公用事件常量
|
|
*/
|
|
|
|
/** 退出 */
|
|
export const LOGOUT = '@event/logout'
|
|
|
|
/** 登录 */
|
|
export const LOGIN = '@event/login'
|
|
|
|
/** 切换开发者工具 */
|
|
export const TOGGLE_DEVTOOLS = 'toggle-devtools'
|