| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div class="home-container">
- <h1>欢迎使用DDAC系统</h1>
- <p>这是系统的主页内容区域</p>
- </div>
- </template>
- <script setup lang="ts">
- // 主页组件逻辑
- </script>
- <style lang="scss" scoped>
- .home-container {
- max-width: 800px;
- margin: 0 auto;
- padding: 40px;
- text-align: center;
- background-color: #fff;
- border-radius: 8px;
- box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
- }
- h1 {
- color: #333;
- margin-bottom: 20px;
- }
- p {
- color: #666;
- font-size: 16px;
- }
- </style>
|