fix:#24 removed asyncComponent for subcomponent

This commit is contained in:
masterelmar
2024-01-18 15:03:25 +01:00
parent 45685d99be
commit 746f2ce4c0

View File

@@ -1,12 +1,9 @@
<script lang="ts" setup> <script lang="ts" setup>
import { defineAsyncComponent } from "vue";
import moduleStore from "../store/moduleStore"; import moduleStore from "../store/moduleStore";
import router from "../router"; import router from "../router";
import AdditionalModuleTable from "../components/AdditionalModuleTable.vue";
const store = moduleStore(); const store = moduleStore();
const AdditionalModuleTable = defineAsyncComponent(
() => import("../components/AdditionalModuleTable.vue"),
);
async function nextStep() { async function nextStep() {
await router.push("/rename-modules"); await router.push("/rename-modules");