show.vue 296 B

12345678910111213141516
  1. <template>
  2. <el-button type="primary" :size="size"><Icon name="eye" className="w-4 h-4 mr-1" /> {{ text }}</el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. defineProps({
  6. size: {
  7. type: String,
  8. default: 'small',
  9. },
  10. text: {
  11. type: String,
  12. default: '详情',
  13. },
  14. })
  15. </script>