9 lines
321 B
TypeScript
9 lines
321 B
TypeScript
|
import type { MenuProps } from './menu';
|
||
|
export declare const useMenuCssVar: (props: MenuProps) => import("vue").ComputedRef<{
|
||
|
'--el-menu-text-color': string;
|
||
|
'--el-menu-hover-text-color': string;
|
||
|
'--el-menu-bg-color': string;
|
||
|
'--el-menu-hover-bg-color': string;
|
||
|
'--el-menu-active-color': string;
|
||
|
}>;
|