(note) add an header

This commit is contained in:
2021-03-20 15:57:46 +01:00
parent 71f1642c45
commit 1ab8672033
5 changed files with 53 additions and 5 deletions

View File

@@ -0,0 +1,23 @@
<template>
<header class="header-note">
<router-link :to="{ name: 'Home' }">
<img src="@/assets/icons/dark-left-arrow.svg" alt="go back left arrow" />
</router-link>
</header>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'HeaderNote'
})
</script>
<style scoped lang="scss">
.header-note {
img:hover {
cursor: pointer;
}
}
</style>