Skip to content

Commit ea6a74d

Browse files
Kinplemelonysfscream
authored andcommittedSep 26, 2024·
refactor(global): remove some unnecessary imports like defineProps
1 parent baa79ee commit ea6a74d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+86
-71
lines changed
 

‎src/components/AdvancedSettingsBtn.vue

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<script setup lang="ts">
1616
import useI18nTl from '@/hooks/useI18nTl'
1717
import { ArrowRight } from '@element-plus/icons-vue'
18-
import { defineEmits, defineProps } from 'vue'
1918
2019
const props = defineProps({
2120
modelValue: {

‎src/components/ArrayEditor.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default defineComponent({
2828

2929
<script setup lang="ts">
3030
import type { PropType, WritableComputedRef } from 'vue'
31-
import { computed, defineEmits, defineProps } from 'vue'
31+
import { computed } from 'vue'
3232
3333
const props = defineProps({
3434
modelValue: {

0 commit comments

Comments
 (0)
Please sign in to comment.