diff --git a/src/templates/modules/documentation/Routes.ts b/src/templates/modules/documentation/Routes.ts index 6787f68..ec44069 100644 --- a/src/templates/modules/documentation/Routes.ts +++ b/src/templates/modules/documentation/Routes.ts @@ -3,12 +3,14 @@ import GettingStarted from './base/Getting-started.vue' import Starting from './base/Starting.vue' import Environment from './base/Environment.vue' import Structure from './base/Structure.vue' +import Command from './base/Command.vue' const routes: RouteRecordRaw[] = [ { path: '/documentation/getting-started', component: GettingStarted }, { path: '/documentation/starting', component: Starting }, { path: '/documentation/environment', component: Environment }, { path: '/documentation/structure', component: Structure }, + { path: '/documentation/commands', component: Command }, ] export default routes \ No newline at end of file diff --git a/src/templates/modules/documentation/base/Command.vue b/src/templates/modules/documentation/base/Command.vue new file mode 100644 index 0000000..41ba393 --- /dev/null +++ b/src/templates/modules/documentation/base/Command.vue @@ -0,0 +1,69 @@ + + + diff --git a/src/utils/Navigation.ts b/src/utils/Navigation.ts index ced3f00..4c10cd2 100644 --- a/src/utils/Navigation.ts +++ b/src/utils/Navigation.ts @@ -22,6 +22,7 @@ export const documentation = [ { label: 'Starting', href: '/documentation/starting', isMenu: false }, { label: 'Environment', href: '/documentation/environment', isMenu: false }, { label: 'Structure', href: '/documentation/structure', isMenu: false }, + { label: 'Commands', href: '/documentation/commands', isMenu: false }, ] }, ]