useFirebase

TIP

このコンポーザブルはクライアントサイド・サーバーサイドの両方で利用できます。

クライアントSDKのインスタンスを取得します。initializeApp()getApp()と同等の処理を行います。

Example

import { getFirestore } from 'firebase/firestore'

const app = useFirebase()
const firestore = getFirestore(app)

// // クライアントサイドのみで実行する場合は`onMounted`で囲む
onMounted(() => {
  const firestore = getFirestore(app)  
})