<!--
|
* @Author : yuan
|
* @Date : 2025-10-13 15:10:00
|
* @LastEditors : yuan
|
* @LastEditTime : 2025-10-13 15:23:32
|
* @FilePath : \src\layout\webViewWrapper\index.vue
|
* @Description :
|
* Copyright 2025 OBKoro1, All Rights Reserved.
|
* 2025-10-13 15:10:00
|
-->
|
<template>
|
<div class="container">
|
<router-view></router-view>
|
</div>
|
</template>
|
|
<script setup>
|
</script>
|
|
<style lang="scss" scoped>
|
.container {
|
width: 100%;
|
height: 100%;
|
background-image: url('@/appDataSource/appwork/bg.png');
|
background-size: cover;
|
background-position: center;
|
background-repeat: no-repeat;
|
}
|
</style>
|