YetAnotherToDoList/frontend/src/App.vue

22 lines
409 B
Vue
Raw Normal View History

<script setup></script>
2023-10-24 16:51:58 +02:00
<template>
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
<router-view></router-view>
2023-10-24 16:51:58 +02:00
</template>
<style scoped>
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;
}
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vue:hover {
filter: drop-shadow(0 0 2em #42b883aa);
}
2023-10-24 16:51:58 +02:00
</style>