Files
litlyx/dashboard/pages/plans.vue
2025-11-28 16:49:20 +01:00

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>