16 lines
216 B
Vue
16 lines
216 B
Vue
<template>
|
|
<div class="homepage">
|
|
<p>主页还没做^^</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.homepage {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.section p {
|
|
color: var(--el-text-color-regular);
|
|
line-height: 1.6;
|
|
}
|
|
</style> |