mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
new selfhosted version
This commit is contained in:
16
dashboard/pages/plans.vue
Normal file
16
dashboard/pages/plans.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user