Initial Nuxt frontend import
Some checks failed
continuous-integration/drone/push Build is failing

- Complete GGZ Ecademy Nuxt.js user portal
- Learning products browser and management
- Member management interface
- User authentication and roles
- Multi-language support (NL/EN)
- Vuex store for state management
- Component-based architecture
This commit is contained in:
Joris Slagter
2025-12-02 17:48:48 +01:00
parent 0f691e83e3
commit 791aebc346
290 changed files with 113801 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
<template>
<v-card flat class="my-4" color="primary">
<v-card-title primary-title v-if="disableAccordion"/>
<v-card-title primary-title v-else @click="expanded = !expanded">
<v-icon x-small class="mx-4">{{
expanded ? 'icon-dropdown' : 'icon-dropdown-up'
}}</v-icon>
{{ title }}
</v-card-title>
<v-card-text v-if="expanded" class="accordion-body">
<div class="addresses-info" v-if="title == 'Adressen'">Wil je een adres wijzigen of toevoegen? Mail dan naar <a href="mailto:info@ggzecademy.nl">info@ggzecademy.nl</a></div>
<v-divider v-if="!disableAccordion" class="mb-10"/>
<slot></slot>
</v-card-text>
</v-card>
</template>
<script>
export default {
props: {
title: {
type: String,
default: 'Title',
},
companyMail: {
type: String,
default: 'info@ggzecademy.nl',
},
disableAccordion: {
type: Boolean,
default: false,
},
},
data() {
return {
expanded: true,
}
},
}
</script>
<style lang="scss">
.addresses-info{
padding-left: 45px;
margin-bottom: 16px;
}
</style>