1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-25 05:43:32 +03:00
guide/front/client/components/Logo.vue
avele b248b75a49
updating-vue-and-babel (#267)
* Vue updated, got rid of vue fork, babel updated

* update vue-class-component

* Vue-class-component updated

* Vue-class-component update and usage
2019-02-20 00:24:07 +04:00

25 lines
348 B
Vue

<template>
<router-link
class="logo"
:to="{ name: 'Index' }"
>
Aelve Guide
</router-link>
</template>
<script lang="ts">
import Vue from 'vue'
import Component from 'vue-class-component'
@Component
export default class Logo extends Vue {}
</script>
<style scoped>
.logo {
text-decoration: none;
color: #ffffff;
}
</style>