cleanup dynamic/static import warnings

This commit is contained in:
Henry Jameson 2026-06-02 18:09:12 +03:00
commit b7ccbc6726
14 changed files with 88 additions and 61 deletions

View file

@ -1,8 +1,8 @@
import { defineAsyncComponent } from 'vue'
import { mapState } from 'vuex'
import AuthForm from '../auth_form/auth_form.js'
import PostStatusForm from '../post_status_form/post_status_form.vue'
import UserCard from '../user_card/user_card.vue'
import AuthForm from 'src/components/auth_form/auth_form.js'
import PostStatusForm from 'src/components/post_status_form/post_status_form.vue'
const UserPanel = {
computed: {
@ -14,7 +14,9 @@ const UserPanel = {
components: {
AuthForm,
PostStatusForm,
UserCard,
UserCard: defineAsyncComponent(
() => import('src/components/user_card/user_card.vue'),
),
},
}