LSSE-front/src/layouts/UserLayout.vue
2025-09-15 19:01:43 +08:00

28 lines
548 B
Vue

<template>
<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 />
</div>
</Grid>
</template>
<script>
export default {
name: 'UserLayout',
data() {
return {
bg: require('@/assets/images/user/bg.jpg'),
}
},
}
</script>
<style lang="less" scoped>
.user-layout-wrapper {
height: 100%;
}
</style>