Files
ui/src/runtime/components/elements/Icon.vue
2022-05-20 12:21:50 +02:00

36 lines
899 B
Vue

<template>
<Iconify v-if="icon" :icon="icon" />
<Component :is="component" v-else-if="component" />
<span v-else>{{ name }}</span>
</template>
<script setup lang="ts">
import type { Ref } from 'vue'
import type { IconifyIcon } from '@iconify/vue'
import { ref, watch, computed } from 'vue'
import { Icon as Iconify } from '@iconify/vue/dist/offline'
import { loadIcon } from '@iconify/vue'
import { useNuxtApp } from '#imports'
const nuxtApp = useNuxtApp()
const props = defineProps({
name: {
type: String,
required: true
}
})
const icon: Ref<IconifyIcon | null> = ref(null)
const component = computed(() => nuxtApp.vueApp.component(props.name))
icon.value = await loadIcon(props.name).catch(_ => null)
watch(() => props.name, async () => {
icon.value = await loadIcon(props.name).catch(_ => null)
})
</script>
<script lang="ts">
export default { name: 'UIcon' }
</script>