We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49b0506 commit 2838bbcCopy full SHA for 2838bbc
README.md
@@ -95,10 +95,15 @@ Based on the installation path above.
95
96
```js
97
import { db } from './store'
98
-
99
- db.tasks.add({ title: 'New Task' }).then(
100
- db.tasks.where('$deleted').notEqual(1).reverse().sortBy('$created').then(console.log)
101
- )
+
+ db.tasks
+ .add({ title: 'New Task' })
+ .then(
102
103
+ .where('$deleted').notEqual(1)
104
+ .reverse().sortBy('$created')
105
+ .then(console.log)
106
+ )
107
```
108
109
Run `npm run dev`, open http://localhost:5173 and see how the task list is logged to the console.
0 commit comments