shuinichang_/.history/src/views/Index_20231122111001.vue

46 lines
601 B
Vue

<template>
<div class="content">
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
.header {
width: 100%;
height: 4%;
color: black;
font-size: 18px;
}
.footer {
width: 100%;
height: 4%;
color: black;
font-size: 18px;
}
p {
font-size: 16px;
width: 100px;
height: 100px;
background-color: red;
}
.home {
width: 100%;
height: 100%;
background-color: transparent;
}
</style>