diff --git a/docs/components/tabs.md b/docs/components/tabs.md index f99fcfdcbc..c70dee3c3e 100644 --- a/docs/components/tabs.md +++ b/docs/components/tabs.md @@ -30,12 +30,18 @@ Required prop, which is an array of tab objects with the following interface: ```ts interface Tab { - hash: string // has to be unique, corresponds to the panel slot name + hash: string title: string - disabled?: boolean + disabled?: boolean, + to?: string | object } ``` +* `hash` - has to be unique, corresponds to the panel slot name +* `title` - title to be displayed in the tab +* `disabled` - whether or not tab is disabled +* `to` - if present, tab will be rendered as either a `router-link` or an `a` +