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>
|
||||
|
||||
<script>
|
||||
import '@/assets/css/DevelopComponent.css'
|
||||
import '@/assets/css/ComponentsStyles/DevelopComponent.css'
|
||||
|
||||
export default {}
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
@@ -127,6 +127,7 @@ export default {
|
||||
<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 href="#">Помощь</a>
|
||||
<a href="#" @click="$router.push({ name: 'about' })" :class="{ 'header__nav--now' : $route.name === 'about' }">О нас</a>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="header__balance">
|
||||
|
||||
@@ -6,11 +6,11 @@
|
||||
|
||||
<header-component></header-component>
|
||||
|
||||
<develop-component></develop-component>
|
||||
</div>
|
||||
<develop-component></develop-component>
|
||||
</template>
|
||||
<script>
|
||||
import { DevelopComponent } from '@/components/DevelopComponent'
|
||||
import DevelopComponent from "@/components/DevelopComponent.vue";
|
||||
import AsideBarComponent from "@/components/AsidebarComponent.vue";
|
||||
import ChatComponent from "@/components/ChatComponent.vue";
|
||||
import HeaderComponent from "@/components/HeaderComponent.vue";
|
||||
|
||||
Reference in New Issue
Block a user