vehicle-monitor/src/layout/index.vue

23 lines
486 B
Vue
Raw Normal View History

2025-02-25 23:14:50 +08:00
<script lang="ts" setup>
import AppMain from "@/layout/components/AppMain/index.vue";
import NavBar from "@/layout/components/NavBar/index.vue";
import Footer from "@/layout/components/Footer/index.vue";
</script>
2025-02-25 18:29:26 +08:00
<template>
2025-02-25 23:14:50 +08:00
<div class="layout w-full h-full">
<NavBar />
<AppMain />
<Footer />
</div>
2025-02-25 18:29:26 +08:00
</template>
2025-02-25 23:14:50 +08:00
<style scoped>
.layout {
width: 100%;
height: 100%;
background: url("@/assets/images/bg.png") no-repeat center;
background-size: cover;
}
</style>