|
@@ -1,26 +1,42 @@
|
|
<template>
|
|
<template>
|
|
<div id="app">
|
|
<div id="app">
|
|
<header>
|
|
<header>
|
|
- <b-navbar toggleable="md">
|
|
|
|
|
|
+ <b-navbar>
|
|
|
|
+ <b-dropdown variant="link" no-caret>
|
|
|
|
+ <template #button-content>
|
|
|
|
+ <span class="navbar-toggler-icon" />
|
|
|
|
+ <span class="sr-only">Menu</span>
|
|
|
|
+ </template>
|
|
|
|
+
|
|
|
|
+ <b-dropdown-item :to="{ name: 'home' }">
|
|
|
|
+ {{ $t('sections.home') }}
|
|
|
|
+ </b-dropdown-item>
|
|
|
|
+ <b-dropdown-item :to="{ name: 'introduction' }">
|
|
|
|
+ {{ $t('sections.introduction') }}
|
|
|
|
+ </b-dropdown-item>
|
|
|
|
+ <b-dropdown-item :to="{ name: 'blog' }">
|
|
|
|
+ {{ $t('sections.blog') }}
|
|
|
|
+ </b-dropdown-item>
|
|
|
|
+ <b-dropdown-item :to="{ name: 'contact' }">
|
|
|
|
+ {{ $t('sections.contact') }}
|
|
|
|
+ </b-dropdown-item>
|
|
|
|
+ </b-dropdown>
|
|
|
|
+
|
|
<b-navbar-brand :to="{ name: 'home' }">
|
|
<b-navbar-brand :to="{ name: 'home' }">
|
|
{{ $t('title') }}
|
|
{{ $t('title') }}
|
|
</b-navbar-brand>
|
|
</b-navbar-brand>
|
|
|
|
|
|
- <b-navbar-toggle target="nav-collapse" />
|
|
|
|
-
|
|
|
|
- <b-collapse id="nav-collapse" is-nav>
|
|
|
|
- <b-navbar-nav class="ml-auto">
|
|
|
|
- <b-nav-item :to="{ name: 'library' }">
|
|
|
|
- {{ $t('sections.library') }}
|
|
|
|
- </b-nav-item>
|
|
|
|
- <b-nav-item :to="{ name: 'kit' }">
|
|
|
|
- {{ $t('sections.kit') }}
|
|
|
|
- </b-nav-item>
|
|
|
|
- <b-nav-item :to="{ name: 'gallery' }">
|
|
|
|
- {{ $t('sections.gallery') }}
|
|
|
|
- </b-nav-item>
|
|
|
|
- </b-navbar-nav>
|
|
|
|
- </b-collapse>
|
|
|
|
|
|
+ <b-nav class="ml-auto">
|
|
|
|
+ <b-nav-item :to="{ name: 'library' }">
|
|
|
|
+ {{ $t('sections.library') }}
|
|
|
|
+ </b-nav-item>
|
|
|
|
+ <b-nav-item :to="{ name: 'kit' }">
|
|
|
|
+ {{ $t('sections.kit') }}
|
|
|
|
+ </b-nav-item>
|
|
|
|
+ <b-nav-item :to="{ name: 'gallery' }">
|
|
|
|
+ {{ $t('sections.gallery') }}
|
|
|
|
+ </b-nav-item>
|
|
|
|
+ </b-nav>
|
|
</b-navbar>
|
|
</b-navbar>
|
|
|
|
|
|
<router-view name="options" />
|
|
<router-view name="options" />
|