mirror of
https://github.com/aelve/guide.git
synced 2024-12-26 22:34:42 +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>
|