|
@@ -18,10 +18,12 @@
|
|
|
import Header from "@/components/Header.vue";
|
|
import Header from "@/components/Header.vue";
|
|
|
import HeroSection from "@/components/HeroSection.vue";
|
|
import HeroSection from "@/components/HeroSection.vue";
|
|
|
import ServicesSection from "@/components/ServicesSection.vue";
|
|
import ServicesSection from "@/components/ServicesSection.vue";
|
|
|
-import PrintingNuancesSection from "@/components/PrintingNuancesSection.vue";
|
|
|
|
|
-import ModelUploadSection from "@/components/ModelUploadSection.vue";
|
|
|
|
|
-import QuotingSection from "@/components/QuotingSection.vue";
|
|
|
|
|
-import ProcessSection from "@/components/ProcessSection.vue";
|
|
|
|
|
-import CTASection from "@/components/CTASection.vue";
|
|
|
|
|
-import Footer from "@/components/Footer.vue";
|
|
|
|
|
|
|
+import { defineAsyncComponent } from "vue";
|
|
|
|
|
+
|
|
|
|
|
+const PrintingNuancesSection = defineAsyncComponent(() => import("@/components/PrintingNuancesSection.vue"));
|
|
|
|
|
+const ModelUploadSection = defineAsyncComponent(() => import("@/components/ModelUploadSection.vue"));
|
|
|
|
|
+const QuotingSection = defineAsyncComponent(() => import("@/components/QuotingSection.vue"));
|
|
|
|
|
+const ProcessSection = defineAsyncComponent(() => import("@/components/ProcessSection.vue"));
|
|
|
|
|
+const CTASection = defineAsyncComponent(() => import("@/components/CTASection.vue"));
|
|
|
|
|
+const Footer = defineAsyncComponent(() => import("@/components/Footer.vue"));
|
|
|
</script>
|
|
</script>
|