mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-21 17:06:36 +08:00
25 lines
484 B
Vue
25 lines
484 B
Vue
<script setup lang="ts">
|
|
// This starter template is using Vue 3 <script setup> SFCs
|
|
// Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
|
|
import HelloWorld from './components/HelloWorld.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<router-view></router-view>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
.logo {
|
|
height: 6em;
|
|
padding: 1.5em;
|
|
will-change: filter;
|
|
}
|
|
.logo:hover {
|
|
filter: drop-shadow(0 0 2em #646cffaa);
|
|
}
|
|
.logo.vue:hover {
|
|
filter: drop-shadow(0 0 2em #42b883aa);
|
|
}
|
|
</style>
|