fix: url for lesson help videos

This commit is contained in:
Jannat Patel
2024-09-18 11:49:38 +05:30
parent b6422d1046
commit 14ce5d7e23

View File

@@ -27,8 +27,8 @@ const props = defineProps({
})
const file = computed(() => {
if (props.type == 'youtube') return '/Youtube.mp4'
if (props.type == 'quiz') return '/Quiz.mp4'
if (props.type == 'upload') return '/Upload.mp4'
if (props.type == 'youtube') return '/assets/lms/frontend/Youtube.mp4'
if (props.type == 'quiz') return '/assets/lms/frontend/Quiz.mp4'
if (props.type == 'upload') return '/assets/lms/frontend/Upload.mp4'
})
</script>