phase.vue 510 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <hc-card>
  3. <template #header>
  4. 1
  5. </template>
  6. <template #extra>
  7. <el-button hc-btn type="primary">
  8. <HcIcon name="add" />
  9. <span>新增</span>
  10. </el-button>
  11. </template>
  12. 1111
  13. </hc-card>
  14. </template>
  15. <script setup>
  16. import { onMounted, ref } from 'vue'
  17. defineOptions({
  18. name: 'PeriodsMaterialPhase',
  19. })
  20. //渲染完成
  21. onMounted(() => {
  22. })
  23. </script>
  24. <style scoped lang="scss">
  25. </style>