chore: `paymentMethods` does not have to be computed
This commit is contained in:
parent
8d9e111892
commit
d9efdb0d73
|
|
@ -27,12 +27,10 @@ const emit = defineEmits(["update:modelValue"]);
|
||||||
const { countries } = useEntities();
|
const { countries } = useEntities();
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
|
|
||||||
const paymentMethods = computed(() => {
|
const paymentMethods = [
|
||||||
return [
|
{ value: "credit_card", label: t("a.Debit-/Kreditkarte/Twint") },
|
||||||
{ value: "credit_card", label: t("a.Debit-/Kreditkarte/Twint") },
|
{ value: "cembra_byjuno", label: t("a.Rechnung") },
|
||||||
{ value: "cembra_byjuno", label: t("a.Rechnung") },
|
];
|
||||||
];
|
|
||||||
});
|
|
||||||
|
|
||||||
const address = computed({
|
const address = computed({
|
||||||
get() {
|
get() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue