Files
Yi.Framework/Yi.Bbs.Vue3/src/layout/LoginLayout.vue
2023-12-19 00:21:25 +08:00

20 lines
306 B
Vue

<template>
<div class="box">
<div class="content">
<RouterView />
</div>
</div>
</template>
<!-- <style src="@/assets/styles/login.scss" scoped></style> -->
<style scoped lang="scss">
.box {
width: 100vw;
height: 100vh;
.content {
width: 100%;
height: 100%;
}
}
</style>