replace eslint config

This commit is contained in:
wobsoriano
2022-11-05 11:49:46 -07:00
parent 83f98e34fa
commit e9081d00ad
7 changed files with 188 additions and 334 deletions

View File

@@ -15,19 +15,18 @@ const addTodo = async () => {
id: Date.now(),
userId: 69,
title,
completed: false,
completed: false
})
console.log(x.data.value)
}
catch (e) {
} catch (e) {
console.log(e)
}
}
const { data: todos, pending, error, refresh } = await $client.todo.getTodos.query(undefined, {
trpc: {
abortOnUnmount: true,
},
abortOnUnmount: true
}
})
</script>