19 lines
628 B
Vue
19 lines
628 B
Vue
<template>
|
|
<UDashboardPanel id="settings-security">
|
|
<template #header>
|
|
<UDashboardNavbar title="Sicherheit">
|
|
<template #leading>
|
|
<UDashboardSidebarCollapse />
|
|
</template>
|
|
</UDashboardNavbar>
|
|
</template>
|
|
<template #body>
|
|
<div class="px-4 py-6 sm:px-6">
|
|
<div class="rounded-xl border border-slate-200 bg-white p-6 text-lg text-slate-700">
|
|
Sicherheitseinstellungen kommen hier hin.
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</UDashboardPanel>
|
|
</template>
|