Add Electrical CV template for apprenticeship applications
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 23s

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-04-21 12:08:03 +01:00
parent 8636dfedb9
commit 2bcb47a1a1
2 changed files with 354 additions and 1 deletions

View File

@@ -5,10 +5,14 @@ import CVGeneral from "./CVGeneral.vue";
import CVBackend from "./CVBackend.vue";
import CVFrontend from "./CVFrontend.vue";
import CVTemp from "./CVTemp.vue";
import CVElectrical from "./CVElectrical.vue";
const CVHospitality = defineAsyncComponent(() => import("./CVHospitality.vue"));
const templates = [{ label: "General", component: CVGeneral }];
const templates = [
{ label: "General", component: CVGeneral },
{ label: "Electrical", component: CVElectrical },
];
const selected = ref(0);
const currentComponent = shallowRef(templates[0].component);