13 lines
225 B
Vue
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>
|