[Vuejs]-[Vue warn]: Unhandled error during execution of mounted hook

1👍

Try to run it that way

async onMounted(() => {
  await fetchTodo(props.uuid)
})

As shown here: https://vuejs.org/api/composition-api-lifecycle.html#onmounted

👤kissu

Leave a comment