blog/src/util/h.js
2024-05-22 14:45:45 +08:00

10 lines
168 B
JavaScript

import { NIcon } from 'naive-ui';
export function renderIcon(icon) {
return () => {
return h(NIcon, null, {
default: () => h(icon)
});
};
}