mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
16 lines
355 B
Vue
16 lines
355 B
Vue
<script lang="ts" setup>
|
|
|
|
|
|
definePageMeta({ layout: 'sidebar' });
|
|
const projectStore = useProjectStore();
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<Unauthorized v-if="!projectStore.isOwner" authorization="Guest user limitation">
|
|
</Unauthorized>
|
|
<div v-else class="flex flex-col gap-8">
|
|
<ManagePlans />
|
|
<PlansCardQuestions/>
|
|
</div>
|
|
</template> |