feat(FE) : layouting dashboard,antrean,pendaftaran

This commit is contained in:
Yusron alamsyah
2026-01-26 09:35:16 +07:00
parent 65d4864013
commit cbd5dcf8f5
29 changed files with 2892 additions and 391 deletions
+8 -16
View File
@@ -11,27 +11,19 @@ const props = defineProps({
</script>
<template>
<v-card elevation="10" class="mb-8">
<div class="px-6 py-4">
<div class="d-flex justify-space-between align-center">
<h5 class="text-h5">{{ title }}</h5>
<v-breadcrumbs :items="breadcrumbs" class="pa-0">
<template v-slot:prepend>
<router-link to="/" class="textSecondary lh-0">
<Icon icon="solar:home-2-line-duotone" height="20" />
</router-link>
</template>
<template v-slot:divider>
<div class="d-flex align-center textSecondary "></div>
</template>
<template v-slot:title="{ item }">
<v-chip size="small" class="rounded-sm" color="primary" >{{ item.text }}</v-chip>
</template>
</v-breadcrumbs>
<div class="d-flex align-center ga-2">
<router-link to="/" class="textSecondary lh-0">
<Icon icon="solar:home-2-line-duotone" height="20" />
</router-link>
<v-chip size="small" class="rounded-sm" color="primary">
{{ breadcrumbs?.map(item => item.text).join(' / ') }}
</v-chip>
</div>
</div>
</div>
</v-card>
</template>
<style lang="scss">