vehicle-monitor/src/App.vue

16 lines
317 B
Vue
Raw Normal View History

2025-02-24 18:23:33 +08:00
<template>
2025-03-01 20:52:06 +08:00
<router-view v-slot="{ Component, route }">
<transition :name="route.meta.transition || 'fade-transform'" mode="out-in">
<component :is="Component" :key="route.path" />
</transition>
</router-view>
2025-02-24 18:23:33 +08:00
</template>
2025-02-25 23:14:50 +08:00
<style>
#app {
width: 100%;
2025-03-01 20:52:06 +08:00
//height: 100%;
height: 1080px;
2025-02-24 18:23:33 +08:00
}
</style>