Files
cobaKeuangan/components/Master/ListMenu.vue

24 lines
412 B
Vue

<script setup lang="ts">
const props = withDefaults(defineProps<{
itemMenu: Record<string, any>;
}>(), {
itemMenu: () => ({}),
});
</script>
<template>
<div v-for="item in itemMenu" :key="item.id" class="d-flex">
<v-row>
<v-col col="12" md="3">
<p>{{ item.display }}</p>
</v-col>
<v-col>
dasd
</v-col>
</v-row>
</div>
</template>
<style scoped>
</style>