chore(Tabs): use preset system

This commit is contained in:
Benjamin Canac
2022-02-22 11:42:06 +01:00
parent 5fb7f10283
commit 3d9ead3d8d
4 changed files with 53 additions and 22 deletions

View File

@@ -274,6 +274,22 @@ const defaultProps = {
html: 'Popover content'
}
}
},
Tabs: {
links: [{
label: 'Usage',
to: '/',
exact: true
}, {
label: 'Examples',
to: '/examples'
}, {
label: 'Migration',
to: '/migration'
}, {
label: 'Tabs',
to: '/components/Tabs'
}]
}
}

View File

@@ -192,7 +192,10 @@ const components = [
},
{
label: 'Tabs',
to: '/components/Tabs'
to: '/components/Tabs',
nuxt3: true,
capi: true,
preset: true
},
{
label: 'VerticalNavigation',