LSSE-front/src/layouts/UserLayout.vue

28 lines
548 B
Vue
Raw Normal View History

2025-08-06 19:10:12 +08:00
<template>
2025-09-15 19:01:43 +08:00
<Grid class="user-layout-wrapper">
<div class="bg-wrapper" style="grid-area: 1 / 1 / 2 / 2">
<img style="width: 100%; height: 100%; object-fit: cover" :src="bg" alt="" />
</div>
<div class="page-wrapper" style="grid-area: 1 / 1 / 2 / 2">
<router-view />
2025-08-06 19:10:12 +08:00
</div>
2025-09-15 19:01:43 +08:00
</Grid>
2025-08-06 19:10:12 +08:00
</template>
<script>
export default {
name: 'UserLayout',
2025-08-13 17:45:33 +08:00
data() {
return {
bg: require('@/assets/images/user/bg.jpg'),
}
},
2025-08-06 19:10:12 +08:00
}
</script>
<style lang="less" scoped>
2025-09-15 19:01:43 +08:00
.user-layout-wrapper {
2025-08-06 19:10:12 +08:00
height: 100%;
}
</style>