You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
735 B
46 lines
735 B
<script setup>
|
|
import HelloWorld from './components/HelloWorld.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<a
|
|
href="https://vitejs.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 vue"
|
|
alt="Vue logo"
|
|
/>
|
|
</a>
|
|
</div>
|
|
<HelloWorld msg="Vite + Vue" />
|
|
</template>
|
|
|
|
<style scoped>
|
|
.logo {
|
|
height: 6em;
|
|
padding: 1.5em;
|
|
transition: filter 300ms;
|
|
will-change: filter;
|
|
}
|
|
|
|
.logo:hover {
|
|
filter: drop-shadow(0 0 2em #646cffaa);
|
|
}
|
|
|
|
.logo.vue:hover {
|
|
filter: drop-shadow(0 0 2em #42b883aa);
|
|
}
|
|
</style>
|
|
|