En mi caso yo no obtengo el texto del comentario desde el evento, cree una variable y la bindee al input:
<script>
export let comments = [];
let comment = '';
function addComment() {
comments = [...comments, {
id: Date.now(),
text: comment,
username: 'luisxxor'
}];
comment = '';
}
</script>```
<form on:submit|preventDefault={addComment}>
<input type="text"
class="Comments-input"
placeholder="Agregar comentario..."
id="text"
bind:value={comment}
>
<button type="submit">
Post
</button>
</form>```
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?