mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-12-06 11:22:41 +01:00
27 lines
No EOL
529 B
Vue
27 lines
No EOL
529 B
Vue
<script setup>
|
|
import { ref } from "vue";
|
|
|
|
import ModalView from '../ModalView.vue';
|
|
|
|
const props = defineProps({
|
|
organizationFolderId: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
const loading = ref(false);
|
|
|
|
</script>
|
|
<template>
|
|
<ModalView
|
|
:has-back-button="false"
|
|
:has-next-step-button="false"
|
|
:has-last-step-button="false"
|
|
:title="'Organization Folder Settings'"
|
|
:loading="loading"
|
|
v-slot="">
|
|
<h3>Eigenschaften</h3>
|
|
<p>{{ props.organizationFolderId }}</p>
|
|
</ModalView>
|
|
</template> |