layui/src/module/icon/index.vue
2021-09-27 16:42:13 +08:00

13 lines
225 B
Vue

<template>
<i class="layui-icon" :class="[type]"></i>
</template>
<script setup name="LayIcon" lang="ts">
import { defineProps } from '@vue/runtime-core'
const props =
defineProps<{
type?: string
}>()
</script>