gpt4 book ai didi

javascript - 未捕获的类型错误 : Cannot read property 'initializeApp' of undefined

转载 作者:行者123 更新时间:2023-11-29 10:26:05 29 4
gpt4 key购买 nike

我正在尝试在我的 Vue 项目中使用一些 Firebase 库(我使用 npm install firebase 安装它)。

我在 main.js 中添加了那些:

import { Firebase } from 'firebase/app'
import 'firebase/analytics'
import 'firebase/auth'
import 'firebase/messaging'

Firebase.initializeApp({
apiKey: 'xxx',
authDomain: 'xxx',
databaseURL: 'xxx',
projectId: 'xxx',
storageBucket: 'xxx',
messagingSenderId: 'xxx',
appId: 'xxx',
measurementId: 'xxx'
})

然后我得到:

Uncaught TypeError: Cannot read property 'initializeApp' of undefined

最佳答案

改变这个:

import { Firebase } from 'firebase/app'

进入这个:

import * as firebase from "firebase/app";

firebase/app 导入所有内容然后执行:

firebase.initializeApp({
apiKey: 'xxx',
authDomain: 'xxx',
databaseURL: 'xxx',
projectId: 'xxx',
storageBucket: 'xxx',
messagingSenderId: 'xxx',
appId: 'xxx',
measurementId: 'xxx'
})

关于javascript - 未捕获的类型错误 : Cannot read property 'initializeApp' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59050195/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com