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>
|
||||
import { ref, shallowRef, defineAsyncComponent } from "vue";
|
||||
import { ref, shallowRef } from "vue";
|
||||
import { RouterLink } from "vue-router";
|
||||
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"));
|
||||
import CVHospitality from "./CVHospitality.vue";
|
||||
|
||||
const templates = [
|
||||
{ label: "General", component: CVGeneral },
|
||||
{ label: "Backend", component: CVBackend },
|
||||
{ label: "Frontend", component: CVFrontend },
|
||||
{ label: "Temp", component: CVTemp },
|
||||
{ label: "Electrical", component: CVElectrical },
|
||||
{ label: "Hospitality", component: CVHospitality },
|
||||
];
|
||||
|
||||
const selected = ref(0);
|
||||
|
||||
Reference in New Issue
Block a user