index.vue 356 B

123456789101112131415161718192021222324
  1. <script setup lang="ts">
  2. defineOptions({
  3. name: "Welcome"
  4. });
  5. </script>
  6. <template>
  7. <div class="max-w-full">
  8. <el-card style="width: 480px; border-radius: 8px" shadow="hover"
  9. >Always</el-card
  10. >
  11. </div>
  12. </template>
  13. <style scoped>
  14. .grid-content {
  15. border-radius: 4px;
  16. min-height: 130px;
  17. }
  18. .ep-bg-purple {
  19. background: #fff;
  20. }
  21. </style>