Remove console logs

This commit is contained in:
Lorenz Padberg 2022-08-11 15:00:03 +02:00
parent 9566c69450
commit bc971065e3
1 changed files with 5 additions and 20 deletions

View File

@ -15,50 +15,35 @@ log.debug('LearningPathView created');
const props = defineProps<{
learningPathSlug: string,
show: boolean
show: boolean
}>()
const learningPathStore = useLearningPathStore();
const userStore = useUserStore();
const emits = defineEmits(['closemodal'])
console.log("======================")
console.log(learningPathStore.learningPath)
console.log("======================")
</script>
<template>
<ItFullScreenModal
:show="show"
@closemodal="$emit('closemodal')">
<div class="bg-white" v-if="learningPathStore.learningPath">
<h1 class="m-12">{{ learningPathStore.learningPath.title }}</h1>
<div class="learningpath flex flex-col">
<div class="flex flex-col h-max">
<div class="bg-red py-8">
<LearningPathDiagram class="max-w-[1680px] w-full" height="2000" identifier="verticalVisualization" v-bind:vertical="true"></LearningPathDiagram>-->
ksdfklm klsmfskdflsif msdlfkfjie
<LearningPathDiagram class="max-w-[1680px] w-full"
height="2000"
identifier="verticalVisualization"
v-bind:vertical="true"></LearningPathDiagram>
</div>
</div>
</div>
</div>
</ItFullScreenModal>
</template>
<style scoped>
</style>