index.vue 520 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <HcNewCard>
  3. <template #header>
  4. <el-button size="large" type="primary">
  5. <HcIcon name="search-2" />
  6. <span>搜索</span>
  7. </el-button>
  8. </template>
  9. <template #extra>
  10. extra
  11. </template>
  12. 111
  13. <template #action>
  14. action
  15. </template>
  16. </HcNewCard>
  17. </template>
  18. <script setup>
  19. import { onMounted } from 'vue'
  20. onMounted(() => {
  21. })
  22. </script>
  23. <style lang="scss" scoped>
  24. </style>