1
0
mirror of synced 2025-12-10 03:38:01 +08:00

build: 构建时某些文件的.d文件丢失

This commit is contained in:
roymondchen
2022-08-05 19:59:19 +08:00
committed by jia000
parent 9ffecf62f7
commit 5e36ca8e47
56 changed files with 919 additions and 1083 deletions

View File

@@ -27,7 +27,6 @@
<script lang="ts">
import { defineComponent, inject, onBeforeMount, onMounted, PropType, Ref, ref, watch } from 'vue';
import { ElSelect } from 'element-plus';
import { FormState, SelectConfig, SelectGroupOption, SelectOption } from '../schema';
import { getConfig } from '../utils/config';
@@ -56,7 +55,7 @@ export default defineComponent({
if (!props.model) throw new Error('不能没有model');
useAddField(props.prop);
const select = ref<typeof ElSelect>();
const select = ref<any>();
const mForm = inject<FormState | undefined>('mForm');
const options = ref<SelectOption[] | SelectGroupOption[]>([]);
const localOptions = ref<SelectOption[] | SelectGroupOption[]>([]);