Skip to content

Commit

Permalink
Εκκαθάριση περιττών δηλώσεων
Browse files Browse the repository at this point in the history
  • Loading branch information
parapente committed Aug 1, 2024
1 parent b51f5dc commit 19505d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/ts/components/VFormComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@

<script setup lang="ts">
import draggable from "vuedraggable";
import { ref, withDefaults } from "vue";
import { ref } from "vue";
import type { Ref } from "vue";
const props = withDefaults(
Expand Down
6 changes: 3 additions & 3 deletions resources/ts/components/VFormFieldComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
</template>

<script lang="ts">
import { defineComponent, withDefaults } from "vue";
import { defineComponent } from "vue";
import AcceptedFiletypeSelect from "./AcceptedFiletypeSelect.vue";
export default defineComponent({
Expand All @@ -169,11 +169,11 @@ export default defineComponent({
</script>

<script setup lang="ts">
import { ref, watch, computed, Ref } from "vue";
import { ref, watch, computed } from "vue";
import {
FieldType,
FieldTypeOptions,
FormFieldOptions,
type FormFieldOptions,
createFormFieldOptions,
} from "@/fieldtype";
import FormFieldAdvancedOptions from "@/components/FormFieldAdvancedOptions.vue";
Expand Down

0 comments on commit 19505d8

Please sign in to comment.