mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
import { useSvgIconRender } from '@sa/hooks';
|
|
import SvgIcon from '@/components/custom/svg-icon.vue';
|
|
|
|
export function useSvgIcon() {
|
|
const { SvgIconVNode } = useSvgIconRender(SvgIcon);
|
|
|
|
return {
|
|
SvgIconVNode
|
|
};
|
|
}
|