Extend note content automatically (no manual click)

This commit is contained in:
fly_mc 2024-10-10 01:36:28 +08:00
parent 30cbc6b85e
commit c0b328fd19

View file

@ -612,6 +612,12 @@ function loadConversation() {
conversation.value = res.reverse();
});
}
// Extend note content automatically (no manual click)
onMounted(() => {
loadReplies();
loadConversation();
});
</script>
<style lang="scss" module>