mirror of
https://github.com/aelve/guide.git
synced 2024-12-27 15:41:18 +03:00
24 lines
338 B
Vue
24 lines
338 B
Vue
|
<template>
|
||
|
<router-link
|
||
|
class="logo"
|
||
|
:to="{ name: 'Index' }"
|
||
|
>
|
||
|
Aelve Guide
|
||
|
</router-link>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { Vue, Component } from 'vue-property-decorator'
|
||
|
|
||
|
@Component
|
||
|
export default class Logo extends Vue {}
|
||
|
</script>
|
||
|
|
||
|
|
||
|
<style scoped>
|
||
|
.logo {
|
||
|
text-decoration: none;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
</style>
|