mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-05-28 14:14:54 +00:00
Remove unused imports
This commit is contained in:
@@ -42,8 +42,8 @@
|
||||
|
||||
<script type="text/babel" setup>
|
||||
import axios from 'axios'
|
||||
import { reactive, ref, computed } from 'vue'
|
||||
import { required, email, helpers } from '@vuelidate/validators'
|
||||
import { reactive, ref } from 'vue'
|
||||
import { email, helpers, required } from '@vuelidate/validators'
|
||||
import { useVuelidate } from '@vuelidate/core'
|
||||
import { useNotificationStore } from '@/scripts/stores/notification'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
@@ -57,14 +57,13 @@
|
||||
|
||||
<script setup>
|
||||
import axios from 'axios'
|
||||
import { ref, computed, onMounted } from 'vue'
|
||||
import { computed, onMounted, ref } from 'vue'
|
||||
import { useNotificationStore } from '@/scripts/stores/notification'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { required, email, helpers } from '@vuelidate/validators'
|
||||
import { email, helpers, required } from '@vuelidate/validators'
|
||||
import { useVuelidate } from '@vuelidate/core'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useAuthStore } from '@/scripts/admin/stores/auth'
|
||||
import { handleError } from '@/scripts/helpers/error-handling'
|
||||
import BaseButton from '@/scripts/components/base/BaseButton.vue'
|
||||
import BaseIcon from '@/scripts/components/base/BaseIcon.vue'
|
||||
import BaseInput from '@/scripts/components/base/BaseInput.vue'
|
||||
|
||||
@@ -53,9 +53,9 @@
|
||||
</template>
|
||||
|
||||
<script type="text/babel" setup>
|
||||
import { ref, computed, reactive } from 'vue'
|
||||
import { computed, reactive, ref } from 'vue'
|
||||
import useVuelidate from '@vuelidate/core'
|
||||
import { required, email, minLength, sameAs } from '@vuelidate/validators'
|
||||
import { email, minLength, required, sameAs } from '@vuelidate/validators'
|
||||
import { useNotificationStore } from '@/scripts/stores/notification'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import axios from 'axios'
|
||||
|
||||
Reference in New Issue
Block a user