diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 4ccfbe59..2fd6cbd9 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -16,7 +16,7 @@ module.exports = { { title: 'General Information', collapsable: false, - children: ['/', 'getting-started'] + children: ['/', 'getting-started', 'migration'] }, { title: 'From scratch', diff --git a/docs/frontend/content-elements.md b/docs/frontend/content-elements.md index 84d33596..ae138562 100644 --- a/docs/frontend/content-elements.md +++ b/docs/frontend/content-elements.md @@ -12,7 +12,7 @@ To avoids conflicts with other UI libraries or your design system we use `T3` pr For instance new content elements should be named `T3CeMycontentelement`. -We use `T3` prefix because some of our global components are not ContentElement e.g. `T3NavLink` +We use `T3` prefix because some of our global components are not ContentElements e.g. `T3NavLink` You don't have name your content elements component file this way, but this is imporant when you register them as global (look below). @@ -61,7 +61,7 @@ We assume our API deliver new content element - with type "keyvisual". 1. to create new content element, you can use [base content element](https://github.com/TYPO3-Initiatives/nuxt-typo3/tree/master/lib/mixins/component/baseCe.js) mixin to inherit all common props. -`components/CeKeyvisual.vue`: +`components/T3CeKeyvisual.vue`: ```html