24 lines
319 B
Vue
24 lines
319 B
Vue
<template>
|
|
<view class="container">
|
|
<text class="placeholder">主页</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
</script>
|
|
|
|
<style scoped>
|
|
.container {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.placeholder {
|
|
font-size: 32rpx;
|
|
color: #999;
|
|
}
|
|
</style>
|