diff --git a/app.vue b/app.vue index b13ecf7..c23a854 100644 --- a/app.vue +++ b/app.vue @@ -6,13 +6,15 @@ const threadSummaryListKey = ref(generateUniqueKey('thread-summary-list')) async function loadThread(selectedTreadId: number) { threadId.value = selectedTreadId - console.log('Selected thread with ID ', threadId.value) } async function refreshThreadList() { threadSummaryListKey.value = generateUniqueKey('thread-summary-list') } +function newThread() { + threadId.value = null +}