12 lines
173 B
Vue
12 lines
173 B
Vue
|
|
<script setup>
|
||
|
|
|
||
|
|
import PrivateRegistry from '../components/PrivateRegistry.vue';
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="content">
|
||
|
|
<PrivateRegistry />
|
||
|
|
</div>
|
||
|
|
</template>
|