Files
Mainpage/src/App.vue

22 lines
306 B
Vue
Raw Normal View History

2025-03-02 22:11:27 +08:00
<script setup>
</script>
2025-03-01 21:30:49 +08:00
<template>
<router-view />
</template>
2025-03-02 22:11:27 +08:00
<style scoped>
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;
2025-03-01 21:30:49 +08:00
}
2025-03-02 22:11:27 +08:00
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
2025-03-01 21:30:49 +08:00
}
2025-03-02 22:11:27 +08:00
.logo.vue:hover {
filter: drop-shadow(0 0 2em #42b883aa);
2025-03-01 21:30:49 +08:00
}
2025-03-01 22:22:04 +08:00
</style>