Add other CVs back
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 21m27s
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 21m27s
This commit is contained in:
@@ -1,17 +1,20 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, shallowRef, defineAsyncComponent } from "vue";
|
import { ref, shallowRef } from "vue";
|
||||||
import { RouterLink } from "vue-router";
|
import { RouterLink } from "vue-router";
|
||||||
import CVGeneral from "./CVGeneral.vue";
|
import CVGeneral from "./CVGeneral.vue";
|
||||||
import CVBackend from "./CVBackend.vue";
|
import CVBackend from "./CVBackend.vue";
|
||||||
import CVFrontend from "./CVFrontend.vue";
|
import CVFrontend from "./CVFrontend.vue";
|
||||||
import CVTemp from "./CVTemp.vue";
|
import CVTemp from "./CVTemp.vue";
|
||||||
import CVElectrical from "./CVElectrical.vue";
|
import CVElectrical from "./CVElectrical.vue";
|
||||||
|
import CVHospitality from "./CVHospitality.vue";
|
||||||
const CVHospitality = defineAsyncComponent(() => import("./CVHospitality.vue"));
|
|
||||||
|
|
||||||
const templates = [
|
const templates = [
|
||||||
{ label: "General", component: CVGeneral },
|
{ label: "General", component: CVGeneral },
|
||||||
|
{ label: "Backend", component: CVBackend },
|
||||||
|
{ label: "Frontend", component: CVFrontend },
|
||||||
|
{ label: "Temp", component: CVTemp },
|
||||||
{ label: "Electrical", component: CVElectrical },
|
{ label: "Electrical", component: CVElectrical },
|
||||||
|
{ label: "Hospitality", component: CVHospitality },
|
||||||
];
|
];
|
||||||
|
|
||||||
const selected = ref(0);
|
const selected = ref(0);
|
||||||
|
|||||||
Reference in New Issue
Block a user