Replies: 2 comments 4 replies
-
@langsz 你好,参考下 https://arco.design/vue/component/icon#icon-font |
Beta Was this translation helpful? Give feedback.
0 replies
-
<template>
<a-space size="large">
<icon-font type="icon-person" :size="32"/>
<icon-font type="icon-earth" :size="32"/>
<icon-font type="icon-flag" :size="32"/>
</a-space>
</template>
<script>
import { Icon } from '@arco-design/web-vue';
const IconFont = Icon.addFromIconFontCn({ src: 'https://at.alicdn.com/t/font_180975_ue66sq60vyd.js' });
export default {
components:{
IconFont
}
}
</script> |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
类似于ant-design-vue的 Icon.createFromIconfontCN方法
Beta Was this translation helpful? Give feedback.
All reactions