Files
lowcode-frontend/src/components/Icon.tsx
2024-09-22 01:28:02 +08:00

13 lines
219 B
TypeScript

// 有点丑陋 但是功能在
import { h, compile } from 'vue';
type Props = {
name: string;
};
const Icon = (props: Props) => {
return(props.name ? h(compile(`<${props.name} />`)) : null)
}
export default Icon;