1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-27 15:41:18 +03:00
guide/front/client/components/Logo.vue

24 lines
338 B
Vue
Raw Normal View History

2018-10-28 17:47:23 +03:00
<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>