Added Billing to Nav

This commit is contained in:
2024-12-30 09:30:47 +01:00
parent ee5ebfe0b9
commit cd463bd1d1

View File

@@ -230,6 +230,11 @@ const links = computed(() => {
icon: "i-heroicons-cog-8-tooth",
children: [
{
label: "Abrechnung",
to: "https://billing.stripe.com/p/login/cN29Eb32Vdx0gOk288",
icon: "i-heroicons-clipboard-document-list",
target: "_blank"
},{
label: "Nummernkreise",
to: "/settings/numberRanges",
icon: "i-heroicons-clipboard-document-list"
@@ -355,6 +360,7 @@ const links = computed(() => {
v-for="child in item.children"
class="ml-4"
:to="child.to"
:target="child.target"
>
{{child.label}}
</UButton>