Skip to content

Commit

Permalink
chore: remove unnecessary generic type
Browse files Browse the repository at this point in the history
  • Loading branch information
YannicEl committed Jan 2, 2024
1 parent 5af1089 commit a8b0a0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/lib/src/components/UForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
</form>
</template>

<script setup lang="ts" generic="T">
<script setup lang="ts">
import { computed } from 'vue';
import { provideForm } from '../composables/useFormInject';
import type { Form } from '../useForm';
import { getClassnames } from '../utils';
const { form } = defineProps<{
form: Form<T>;
form: Form;
}>();
const emits = defineEmits<{
Expand Down

0 comments on commit a8b0a0d

Please sign in to comment.