You've already forked AstralRinth
forked from didirus/AstralRinth
Add navrow + markdown parsing
This commit is contained in:
@@ -38,6 +38,7 @@ export default {
|
||||
{ text: 'Search Filter', link: '/components/search-filter' },
|
||||
{ text: 'Toggle', link: '/components/toggle' },
|
||||
{ text: 'Promotion', link: '/components/promotion' },
|
||||
{ text: 'Navigation Row', link: '/components/nav-row' },
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
47
docs/components/nav-row.md
Normal file
47
docs/components/nav-row.md
Normal file
@@ -0,0 +1,47 @@
|
||||
# NavRow
|
||||
|
||||
Note: the links and animation do not work in the documentation as Vue Router is not used for routing
|
||||
|
||||
<DemoContainer>
|
||||
<NavRow :links="[
|
||||
{
|
||||
label: 'Avatar',
|
||||
href: '/components/avatar.html',
|
||||
},
|
||||
{
|
||||
label: 'Badge',
|
||||
href: '/components/nav-row.html',
|
||||
},
|
||||
{
|
||||
label: 'Pagination',
|
||||
href: '/components/Pagination.html',
|
||||
},
|
||||
{
|
||||
label: 'NavRow',
|
||||
href: '/components/nav-row.html',
|
||||
}
|
||||
]"
|
||||
/>
|
||||
</DemoContainer>
|
||||
|
||||
```vue
|
||||
<NavRow :links="[
|
||||
{
|
||||
label: 'Avatar',
|
||||
href: '/components/avatar.html',
|
||||
},
|
||||
{
|
||||
label: 'Badge',
|
||||
href: '/components/nav-row.html',
|
||||
},
|
||||
{
|
||||
label: 'Pagination',
|
||||
href: '/components/Pagination.html',
|
||||
},
|
||||
{
|
||||
label: 'NavRow',
|
||||
href: '/components/nav-row.html',
|
||||
}
|
||||
]"
|
||||
/>
|
||||
```
|
||||
Reference in New Issue
Block a user