mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 12:19:31 +02:00
fixed bug with not-display develop-component and changed template, added router-push to path /about
This commit is contained in:
@@ -7,7 +7,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import '@/assets/css/DevelopComponent.css'
|
import '@/assets/css/ComponentsStyles/DevelopComponent.css'
|
||||||
|
|
||||||
export default {}
|
export default {
|
||||||
|
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
@@ -127,6 +127,7 @@ export default {
|
|||||||
<a href="#" @click="$router.push({ name: 'home' })" :class="{ 'header__nav--now' : $route.name === 'home' }">Главная</a>
|
<a href="#" @click="$router.push({ name: 'home' })" :class="{ 'header__nav--now' : $route.name === 'home' }">Главная</a>
|
||||||
<a v-if="authtoken !== ''" href="#" @click="$router.push({ name: 'profile' })" :class="{ 'header__nav--now' : $route.name === 'profile' }">Профиль</a>
|
<a v-if="authtoken !== ''" href="#" @click="$router.push({ name: 'profile' })" :class="{ 'header__nav--now' : $route.name === 'profile' }">Профиль</a>
|
||||||
<a href="#">Помощь</a>
|
<a href="#">Помощь</a>
|
||||||
|
<a href="#" @click="$router.push({ name: 'about' })" :class="{ 'header__nav--now' : $route.name === 'about' }">О нас</a>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
<div class="header__balance">
|
<div class="header__balance">
|
||||||
|
|||||||
@@ -6,11 +6,11 @@
|
|||||||
|
|
||||||
<header-component></header-component>
|
<header-component></header-component>
|
||||||
|
|
||||||
|
<develop-component></develop-component>
|
||||||
</div>
|
</div>
|
||||||
<develop-component></develop-component>
|
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { DevelopComponent } from '@/components/DevelopComponent'
|
import DevelopComponent from "@/components/DevelopComponent.vue";
|
||||||
import AsideBarComponent from "@/components/AsidebarComponent.vue";
|
import AsideBarComponent from "@/components/AsidebarComponent.vue";
|
||||||
import ChatComponent from "@/components/ChatComponent.vue";
|
import ChatComponent from "@/components/ChatComponent.vue";
|
||||||
import HeaderComponent from "@/components/HeaderComponent.vue";
|
import HeaderComponent from "@/components/HeaderComponent.vue";
|
||||||
|
|||||||
Reference in New Issue
Block a user