You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
538 B
21 lines
538 B
1 year ago
|
import { SuperComponent, RelationsOptions } from '../common/src/index';
|
||
|
export default class SideBarItem extends SuperComponent {
|
||
|
externalClasses: string[];
|
||
|
properties: import("./type").TdSideBarItemProps;
|
||
|
relations: RelationsOptions;
|
||
|
observers: {
|
||
|
icon(v: any): void;
|
||
|
};
|
||
|
data: {
|
||
|
classPrefix: string;
|
||
|
prefix: string;
|
||
|
active: boolean;
|
||
|
isPre: boolean;
|
||
|
isNext: boolean;
|
||
|
};
|
||
|
methods: {
|
||
|
updateActive(value: any): void;
|
||
|
handleClick(): void;
|
||
|
};
|
||
|
}
|