| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="container">
- <h1>欢迎使用哎呀小说</h1>
- <p>基础框架已加载!</p>
- <p>当前时间: {{ new Date().toLocaleString() }}</p>
- </view>
- </template>
- <script>
- export default {
- mounted() {
- console.log('首页已加载')
- }
- }
- </script>
- <style scoped>
- page {
- height: 100%;
- background-color: #fff;
- }
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100vh; /* 确保全屏高度 */
- }
-
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-bottom: 50rpx;
- }
-
- .text-area {
- display: flex;
- justify-content: center;
- }
-
- .title {
- font-size: 36rpx;
- color: #333; /* 修改为深色确保可见 */
- font-weight: bold;
- }
- </style>
|