feat: add company list
This commit is contained in:
parent
4791a776d4
commit
888e398496
|
|
@ -0,0 +1,34 @@
|
|||
export const companies = [
|
||||
{ id: "0", name: "Auswählen" },
|
||||
{ id: "1", name: "Andere Broker" },
|
||||
{ id: "2", name: "Andere Krankenversicherer" },
|
||||
{ id: "3", name: "Andere Privatversicherer" },
|
||||
{ id: "4", name: "Allianz Suisse" },
|
||||
{ id: "5", name: "AON" },
|
||||
{ id: "6", name: "AXA Winterthur" },
|
||||
{ id: "7", name: "Baloise" },
|
||||
{ id: "8", name: "CAP Rechtsschutz" },
|
||||
{ id: "9", name: "Coop Rechtsschutz" },
|
||||
{ id: "10", name: "CSS" },
|
||||
{ id: "11", name: "Die Mobiliar" },
|
||||
{ id: "12", name: "Emmental Versicherung" },
|
||||
{ id: "13", name: "GENERALI Versicherungen" },
|
||||
{ id: "14", name: "Groupe Mutuel" },
|
||||
{ id: "15", name: "Helsana" },
|
||||
{ id: "16", name: "Helvetia" },
|
||||
{ id: "17", name: "Kessler & Co AG" },
|
||||
{ id: "18", name: "Orion Rechtsschutz Versicherung" },
|
||||
{ id: "19", name: "PAX" },
|
||||
{ id: "20", name: "Sanitas" },
|
||||
{ id: "21", name: "SUVA" },
|
||||
{ id: "22", name: "Swica" },
|
||||
{ id: "23", name: "Swiss Life" },
|
||||
{ id: "24", name: "Swiss Re" },
|
||||
{ id: "25", name: "Visana Services AG" },
|
||||
{ id: "26", name: "VZ VermögensZentrum AG" },
|
||||
{ id: "27", name: "Würth Financial Services AG" },
|
||||
{ id: "28", name: "Zürich" },
|
||||
{ id: "29", name: "VBV" },
|
||||
{ id: "30", name: "Vaudoise" },
|
||||
{ id: "31", name: "Keine Firmenzugehörigkeit" },
|
||||
];
|
||||
|
|
@ -5,15 +5,10 @@ import { ref, watch } from "vue";
|
|||
import { useUserStore } from "@/stores/user";
|
||||
import AvatarImage from "@/components/ui/AvatarImage.vue";
|
||||
import { useFileUpload } from "@/composables";
|
||||
import { companies } from "@/pages/onboarding/companies";
|
||||
|
||||
const user = useUserStore();
|
||||
|
||||
const companies = [
|
||||
{ id: 1, name: "Firma 1" },
|
||||
{ id: 2, name: "Firma 2" },
|
||||
{ id: 3, name: "Firma 3" },
|
||||
];
|
||||
|
||||
const selectedCompany = ref(companies[0]);
|
||||
|
||||
const {
|
||||
|
|
|
|||
Loading…
Reference in New Issue