yumechi-no-kuni/src/client/app/common/views/components/nav.vue

35 lines
792 B
Vue
Raw Normal View History

2018-02-10 21:42:02 -06:00
<template>
2018-02-18 23:29:42 -06:00
<span class="mk-nav">
<a :href="aboutUrl">{{ $t('about') }}</a>
2018-02-10 21:42:02 -06:00
<i></i>
2019-05-13 12:50:23 -05:00
<a :href="repositoryUrl" rel="noopener" target="_blank">{{ $t('repository') }}</a>
2018-02-10 21:42:02 -06:00
<i></i>
2019-05-13 12:50:23 -05:00
<a :href="feedbackUrl" rel="noopener" target="_blank">{{ $t('feedback') }}</a>
2018-04-17 05:40:02 -05:00
<i></i>
<a href="/dev">{{ $t('develop') }}</a>
2018-02-10 21:42:02 -06:00
</span>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-08-21 19:31:35 -05:00
import { lang } from '../../../config';
2018-02-10 21:42:02 -06:00
export default Vue.extend({
i18n: i18n('common/views/components/nav.vue'),
2018-02-10 21:42:02 -06:00
data() {
return {
2018-08-21 19:31:35 -05:00
aboutUrl: `/docs/${lang}/about`,
repositoryUrl: 'https://github.com/syuilo/misskey',
feedbackUrl: 'https://github.com/syuilo/misskey/issues/new'
2018-02-10 21:42:02 -06:00
}
}
});
</script>
2018-02-18 23:29:42 -06:00
<style lang="stylus" scoped>
.mk-nav
a
color inherit
</style>