Skip to content

vuefire@3.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 23 Dec 11:16
· 346 commits to main since this release
3ef0c7c

VueFire logo

VueFire 3 is now entering its stable phase! πŸŽ‰

This release doesn't include any changes from the previous beta, but it's now considered a good time to start using it in production. Here is a code sample binding a Firestore Collection that is always in sync with the database:

<script setup>
import { useCollection, useFirestore } from 'vuefire'
import { collection } from 'firebase/firestore'

const todos = useCollection(collection(useFirestore(), 'todos'))
</script>

<template>
  <ul>
    <li v-for="todo in todos" :key="todo.id">
     <span>{{ todo.text }}</span>
    </li>
  </ul>
</template>

Head over to the Documentation to learn more about VueFire 3.

Report any bugs you find on GitHub Issues.

Please refer to CHANGELOG.md for details.