123456789101112131415161718192021222324 |
- <script setup lang="ts">
- defineOptions({
- name: "Welcome"
- });
- </script>
- <template>
- <div class="max-w-full">
- <el-card style="width: 480px; border-radius: 8px" shadow="hover"
- >Always</el-card
- >
- </div>
- </template>
- <style scoped>
- .grid-content {
- border-radius: 4px;
- min-height: 130px;
- }
- .ep-bg-purple {
- background: #fff;
- }
- </style>
|