fix(docs): [form] label-position type error (#14312)

This commit is contained in:
btea
2023-09-18 08:55:13 +08:00
committed by GitHub
parent 820e5a6b20
commit 5ebce79d5b

View File

@@ -25,8 +25,9 @@
<script lang="ts" setup>
import { reactive, ref } from 'vue'
import type { FormProps } from 'element-plus'
const labelPosition = ref('right')
const labelPosition = ref<FormProps['labelPosition']>('right')
const formLabelAlign = reactive({
name: '',