Skip to content

Commit

Permalink
Fix runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-jagruti-a committed Nov 23, 2023
1 parent 951416e commit c962cae
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions nuxt-frontend/pages/jobs/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
v-on:add-animation="handleAnimationOnScroll"
/>
<Career id="career" />
<FaqSection v-on:add-animation="handleAnimationOnScroll" />
<NewFooter ref="footer" />
<FaqSection v-on:add-animation="handleAnimationOnScroll" ref="footer" />
<NewFooter />
</div>
</template>

Expand All @@ -26,29 +26,29 @@ import { defineAsyncComponent } from "vue";
import config from "@/config.js";
import { elementInViewPort, handleAnimationOnScroll } from "@/utils.js";
const VirtuesView = defineAsyncComponent(
() => import("@/components/jobs/VirtuesView.vue"),
const VirtuesView = defineAsyncComponent(() =>
import("@/components/jobs/VirtuesView.vue")
);
const LifeAtCanopas = defineAsyncComponent(
() => import("@/components/jobs/LifeAtCanopas.vue"),
const LifeAtCanopas = defineAsyncComponent(() =>
import("@/components/jobs/LifeAtCanopas.vue")
);
const Career = defineAsyncComponent(
() => import("@/components/jobs/CareerView.vue"),
const Career = defineAsyncComponent(() =>
import("@/components/jobs/CareerView.vue")
);
const PerksAndBenefits = defineAsyncComponent(
() => import("@/components/jobs/PerksAndBenefits.vue"),
const PerksAndBenefits = defineAsyncComponent(() =>
import("@/components/jobs/PerksAndBenefits.vue")
);
const WhyCanopas = defineAsyncComponent(
() => import("@/components/jobs/WhyCanopas.vue"),
const WhyCanopas = defineAsyncComponent(() =>
import("@/components/jobs/WhyCanopas.vue")
);
const WhyCanopasMobile = defineAsyncComponent(
() => import("@/components/jobs/WhyCanopasMobile.vue"),
const WhyCanopasMobile = defineAsyncComponent(() =>
import("@/components/jobs/WhyCanopasMobile.vue")
);
const FaqSection = defineAsyncComponent(
() => import("@/components/jobs/FaqSection.vue"),
const FaqSection = defineAsyncComponent(() =>
import("@/components/jobs/FaqSection.vue")
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
const NewFooter = defineAsyncComponent(() =>
import("@/components/partials/NewFooter.vue")
);
const { $mixpanel } = useNuxtApp();
Expand Down

0 comments on commit c962cae

Please sign in to comment.