10 lines
243 B
Vue
10 lines
243 B
Vue
<script setup lang="ts">
|
|
import { BACK_LINK } from '@lib/config'
|
|
</script>
|
|
|
|
<template>
|
|
<template v-if="$route.fullPath != '/'">
|
|
<RouterLink class="link-back" to="/"><span v-html="BACK_LINK"></span></RouterLink>
|
|
</template>
|
|
</template>
|