28 lines
610 B
Vue
28 lines
610 B
Vue
<script setup lang="ts">
|
|
import HelloWorld from './components/HelloWorld.vue'
|
|
import './assets/style.scss'
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<a href="https://vite.dev" target="_blank">
|
|
<img src="/vite.svg" class="logo" alt="Vite logo" />
|
|
</a>
|
|
<a href="https://vuejs.org/" target="_blank">
|
|
<img src="./assets/vue.svg" class="logo" alt="Vue logo" />
|
|
</a>
|
|
</div>
|
|
<HelloWorld msg="Vite + Vue" />
|
|
</template>
|
|
|
|
<style scoped>
|
|
.logo {
|
|
height: 10em;
|
|
padding: 1.5em;
|
|
will-change: filter;
|
|
transition: filter 300ms;
|
|
}
|
|
.logo:hover {
|
|
filter: drop-shadow(0 0 2em #000000aa);
|
|
}
|
|
</style>
|