more minor dynamic imports
This commit is contained in:
parent
e0c8fcc82b
commit
e6db1813ed
3 changed files with 22 additions and 17 deletions
|
|
@ -1,4 +1,3 @@
|
|||
import MuteConfirm from 'src/components/confirm_modal/mute_confirm.vue'
|
||||
import Popover from 'src/components/popover/popover.vue'
|
||||
import ActionButton from './action_button.vue'
|
||||
import { defineAsyncComponent } from 'vue'
|
||||
|
|
@ -16,7 +15,9 @@ export default {
|
|||
components: {
|
||||
ActionButton,
|
||||
Popover,
|
||||
MuteConfirm,
|
||||
MuteConfirm: defineAsyncComponent(
|
||||
() => import( 'src/components/confirm_modal/mute_confirm.vue'),
|
||||
),
|
||||
UserTimedFilterModal: defineAsyncComponent(
|
||||
() => import( 'src/components/user_timed_filter_modal/user_timed_filter_modal.vue'),
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue