You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
532 B

1 month ago
  1. <script setup>
  2. </script>
  3. <template>
  4. <!-- 使用一个根元素包裹所有内容 -->
  5. <div>
  6. <div>HomeView</div>
  7. <div>
  8. <el-button>Default</el-button>
  9. <el-button type="primary">Primary</el-button>
  10. <el-button type="success">Success</el-button>
  11. <el-button type="info">Info</el-button>
  12. <el-button type="warning">Warning</el-button>
  13. <el-button type="danger">Danger</el-button>
  14. </div>
  15. </div>
  16. </template>
  17. <style scoped>
  18. </style>