1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-26 22:34:42 +03:00
guide/front/client/components/Logo.vue
2018-10-28 17:47:23 +03:00

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>