forked from learningequality/kolibri-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ktabspanel.vue
31 lines (22 loc) · 1.06 KB
/
ktabspanel.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
<DocsPageTemplate apiDocs>
<DocsPageSection title="Overview" anchor="#overview">
<p>A part of a tabbed interface that displays content associated with the active tab. It is meant to be used together with <DocsLibraryLink component="KTabsList" />. Please study <DocsLibraryLink component="KTabsList" /> page to understand how to use <code>KTabsPanel</code>.</p>
</DocsPageSection>
<DocsPageSection title="Related" anchor="#related">
<ul>
<li>
<DocsInternalLink text="Tabs page" href="/tabs" /> has an overview and usage guidance for all tab-related components
</li>
<li><DocsLibraryLink component="KTabsList" /> is a component to be used together with <code>KTabsPanel</code> and contains detailed guidance on using both these components</li>
<li>
<DocsLibraryLink component="KTabs" /> is an alternative way to implement tabs
</li>
</ul>
</DocsPageSection>
</DocsPageTemplate>
</template>
<script>
export default {};
</script>
<style lang="scss" scoped></style>