mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
21 lines
329 B
Vue
21 lines
329 B
Vue
<script setup>
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="body">
|
|
<div class="head"></div>
|
|
<div class="content">
|
|
<router-view></router-view>
|
|
<router-view name="market"></router-view>
|
|
</div>
|
|
<div class="bottom"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.body{
|
|
display: flex;
|
|
background-color: #cdcdcd;
|
|
}
|
|
</style> |