vehicle-monitor/src/views/welcome/index.vue

19 lines
325 B
Vue
Raw Normal View History

<script lang="ts" setup>
2025-03-14 15:25:47 +08:00
import WelcomeContent from '@/views/welcome/components/welcome-content.vue';
</script>
<template>
2025-03-05 13:57:51 +08:00
<div class="welcome">
<welcome-content />
2025-05-12 17:12:01 +08:00
<!--<welcome-footer />-->
</div>
</template>
2025-03-11 23:21:59 +08:00
<style lang="scss">
2025-03-13 18:39:39 +08:00
.welcome {
width: 100%;
height: 100%;
2025-03-16 21:29:29 +08:00
animation: bounceInUp 1s;
2025-03-13 18:39:39 +08:00
}
</style>