16 lines
240 B
Vue
16 lines
240 B
Vue
<script setup>
|
|
|
|
import LdapServer from '../components/LdapServer.vue';
|
|
import ExternalLdap from '../components/ExternalLdap.vue';
|
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<div class="content">
|
|
<LdapServer />
|
|
|
|
<ExternalLdap />
|
|
</div>
|
|
</template>
|