feat: exercise form and submission list

This commit is contained in:
Jannat Patel
2025-06-20 19:59:10 +05:30
parent 9bb4c45a23
commit 88a2b69980
26 changed files with 938 additions and 51 deletions

View File

@@ -59,7 +59,6 @@ const code = ref<string>('')
watch(
() => props.modelValue,
(newVal) => {
console.log('newVal', newVal)
code.value =
typeof newVal === 'string' ? newVal : JSON.stringify(newVal, null, 2)
},