2024-10-06 00:45:56 +00:00
|
|
|
<template>
|
|
|
|
<Admin class="page">
|
|
|
|
<Revisions
|
2024-10-08 19:30:55 +00:00
|
|
|
context="admin"
|
2024-10-06 00:45:56 +00:00
|
|
|
/>
|
|
|
|
</Admin>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import Admin from '#/components/admin/admin.vue';
|
|
|
|
import Revisions from '#/components/edit/revisions.vue';
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.page {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
</style>
|