diff --git a/web/admin-gui/src/views/ArticlesEdit.vue b/web/admin-gui/src/views/ArticlesEdit.vue index 45ce695..72aae0c 100644 --- a/web/admin-gui/src/views/ArticlesEdit.vue +++ b/web/admin-gui/src/views/ArticlesEdit.vue @@ -8,67 +8,67 @@ let article: Ref
= ref() const editorData: Ref = ref('') onMounted(async () => { - article.value = await getArticle(useRoute().params.articleID as string) - editorData.value = article.value.content.html + article.value = await getArticle(useRoute().params.articleID as string) + editorData.value = article.value.content.html }) function abort() { } function saveContent() { - console.log(editorData.value) + console.log(editorData.value) } - + \ No newline at end of file