Sorting Collections #1267
-
Hi there,
Would be great if someone could give me a hint. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Found an answer. |
Beta Was this translation helpful? Give feedback.
-
The answer was so simple, I thought, surely anyone can solve this easily right away. I simply used a query... import { query, collection, orderBy } from 'firebase/firestore'
import { useCollection from 'vuefire'
const q = query(collection(db, 'participant'), orderBy('name'))
const FS_sorted = useCollection(q) |
Beta Was this translation helpful? Give feedback.
The answer was so simple, I thought, surely anyone can solve this easily right away. I simply used a query...