vue-db
Installation
SKILL.md
This skill builds on db-core. Read it first for collection setup, query builder, and mutation patterns.
TanStack DB — Vue
Setup
<script setup lang="ts">
import { useLiveQuery, eq, not } from '@tanstack/vue-db'
const { data: todos, isLoading } = useLiveQuery((q) =>
q
.from({ todo: todoCollection })
.where(({ todo }) => not(todo.completed))
.orderBy(({ todo }) => todo.created_at, 'asc'),
)
</script>
Related skills