create single page of courses

This commit is contained in:
HAM!DREZA
2024-05-18 16:02:45 +03:30
parent d46cce51ac
commit 81f0fd159c
38 changed files with 1918 additions and 294 deletions
+8
View File
@@ -0,0 +1,8 @@
<template>
<product-pageAttended-course v-if="paidCourse" />
<product-pageCourse-detail v-else/>
</template>
<script setup>
const paidCourse = useState('paidStatus', () => false)
</script>