fix remainder of inefficient imports
This commit is contained in:
parent
a724458fcc
commit
c5445096e8
2 changed files with 6 additions and 6 deletions
|
|
@ -1,12 +1,13 @@
|
|||
import { mapActions, mapState } from 'pinia'
|
||||
|
||||
import ErrorModal from 'src/components/error_modal/error_modal.vue'
|
||||
import { defineAsyncComponent } from 'vue'
|
||||
|
||||
import { useInterfaceStore } from 'src/stores/interface.js'
|
||||
|
||||
const GlobalError = {
|
||||
components: {
|
||||
ErrorModal,
|
||||
ErrorModal: defineAsyncComponent(
|
||||
() => import('src/components/error_modal/error_modal.vue')
|
||||
),
|
||||
},
|
||||
computed: {
|
||||
title() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue