feat: iconify图标新增离线功能

This commit is contained in:
奔跑的面条
2023-12-17 00:12:50 +08:00
parent ce1a5476d6
commit 4c7c5cf4ba
10 changed files with 147 additions and 88 deletions
@@ -1,13 +1,13 @@
<template>
<div class="go-icon-box">
<Icon :icon="((dataset || '') as string)" :color="color" :width="size" :rotate="rotate" />
<GoIconify :icon="((dataset || '') as string)" :color="color" :width="size" :rotate="rotate" />
</div>
</template>
<script setup lang="ts">
import { PropType, toRefs } from 'vue'
import { CreateComponentType } from '@/packages/index.d'
import { Icon } from '@iconify/vue'
import { GoIconify } from '@/components/GoIconify'
const props = defineProps({
chartConfig: {