vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
19 lines (18 loc) • 355 B
TypeScript
export interface ScopedTab {
/**
* Indicates whether this scoped tab has an error icon.
*/
hasError: boolean;
/**
* Scoped Tab ID
*/
id: string;
/**
* Scoped tab label.
*/
label: string;
/**
* Scoped tab Name, used to identify the scoped tab when emitting events.
*/
name: string;
}