ci(field): 文档集成 field 组件解析

This commit is contained in:
就眠仪式
2021-10-13 02:32:29 +08:00
parent 5e750b5a23
commit 23317590c4
8 changed files with 42 additions and 47 deletions

View File

@@ -1,6 +1,6 @@
<template>
<img
:src="href"
:src="src"
class="layui-avatar"
:class="[
radius ? 'layui-avatar-radius' : '',
@@ -13,7 +13,7 @@
import { defineProps } from 'vue'
const props = defineProps<{
href?: String
src?: String
radius?: boolean
size?: string
}>()