Merge branch 'cobaTampilan' of https://git.rssa.top/dwi.firman/cobaKeuangan into keycloak

# Conflicts:
#	components/Master/DialogModal.vue
#	pages/Setting/typeUser/index.vue
This commit is contained in:
2025-06-03 14:36:34 +07:00
4 changed files with 7796 additions and 524 deletions

View File

@@ -1,8 +1,8 @@
<script lang="ts" setup>
import {ref, watch, defineProps} from 'vue';
import { ref, watch, defineProps } from 'vue';
const props = defineProps({
stateValue: {type: Boolean, required: true}
stateValue: { type: Boolean, required: true }
});
const isActive = ref(props.stateValue);
@@ -41,12 +41,12 @@ $fetch(`/api/setting/getListMenu`)
</div>
</div>
</template>
<template v-slot:text>
<MasterListMenu :itemMenu="listMenu" />
</template>
<slot name="text">
<!-- text -->
</slot>
<v-card-actions>
<v-btn text @click="$emit('stateValue', false)">Disagree</v-btn>
<v-btn text @click="$emit('stateValue', false)">Agree</v-btn>
</v-card-actions>
</v-card>
</template>