schangxiang@126.com
2025-04-29 27ba504441037666e787ded85b4af2f65be65c17
HIAWms/web/src/components/Select/Option.tsx
对比新文件
@@ -0,0 +1,13 @@
import { defineComponent } from 'vue'
import IconButton from '@/components/IconButton/IconButton'
import { CaretBottom } from '@element-plus/icons-vue'
export default defineComponent<{ [key: string]: any }>({
  name: 'Option',
  setup(props, { attrs, slots, emit }) {
    return () => {
      return <el-option {...attrs}></el-option>
    }
  },
})