zs
2025-05-06 55bf797dcc730b37bc691ebab2b51ff9db8ed245
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>
    }
  },
})