mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-05-25 20:54:56 +00:00
Remove unused imports
This commit is contained in:
@@ -114,14 +114,8 @@
|
||||
<script setup>
|
||||
import { useModuleStore } from '@/scripts/admin/stores/module'
|
||||
import { useGlobalStore } from '@/scripts/admin/stores/global'
|
||||
import { computed, onMounted, reactive, ref, watchEffect } from 'vue'
|
||||
import {
|
||||
required,
|
||||
minLength,
|
||||
maxLength,
|
||||
helpers,
|
||||
requiredUnless,
|
||||
} from '@vuelidate/validators'
|
||||
import { computed, ref } from 'vue'
|
||||
import { helpers, minLength, required } from '@vuelidate/validators'
|
||||
import ModuleCard from './partials/ModuleCard.vue'
|
||||
import ModuleCardPlaceholder from './partials/ModuleCardPlaceholder.vue'
|
||||
import { useVuelidate } from '@vuelidate/core'
|
||||
|
||||
@@ -658,17 +658,19 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { Tab, TabGroup, TabList, TabPanel, TabPanels } from '@headlessui/vue'
|
||||
import {
|
||||
RadioGroup,
|
||||
RadioGroupDescription,
|
||||
RadioGroupLabel,
|
||||
RadioGroupOption,
|
||||
Tab,
|
||||
TabGroup,
|
||||
TabList,
|
||||
TabPanel,
|
||||
TabPanels
|
||||
} from '@headlessui/vue'
|
||||
import { useModuleStore } from '@/scripts/admin/stores/module'
|
||||
import { computed, onMounted, ref, watch, reactive } from 'vue'
|
||||
import { required, minLength, maxLength, helpers } from '@vuelidate/validators'
|
||||
import { useVuelidate } from '@vuelidate/core'
|
||||
import { computed, reactive, ref, watch } from 'vue'
|
||||
import { useRoute } from 'vue-router'
|
||||
import { useDialogStore } from '@/scripts/stores/dialog'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
@@ -684,6 +686,7 @@ import BaseBreadcrumbItem from '@/scripts/components/base/BaseBreadcrumbItem.vue
|
||||
import BaseBreadcrumb from '@/scripts/components/base/BaseBreadcrumb.vue'
|
||||
import BasePageHeader from '@/scripts/components/base/BasePageHeader.vue'
|
||||
import BasePage from '@/scripts/components/base/BasePage.vue'
|
||||
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const moduleStore = useModuleStore()
|
||||
|
||||
@@ -122,7 +122,7 @@
|
||||
|
||||
<script setup>
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { computed, onMounted, ref, watch, reactive } from 'vue'
|
||||
import { computed } from 'vue'
|
||||
import BaseText from '@/scripts/components/base/BaseText.vue'
|
||||
|
||||
const { t } = useI18n()
|
||||
|
||||
Reference in New Issue
Block a user