VueJS + VUEX + Firebase: Where To Hook Up Firebase?
问题 I would like to integrate Firebase in my Vue.JS app. I wonder WHERE to put the references to Firebase. 回答1: To install firebase as a dependency in your project cd into your project directory and run the following command in the command line npm install --save firebase Now in your main.js file add this import Vue from 'vue' import App from './App.vue' import * as firebase from 'firebase' import { store } from './store/store' const config = { apiKey: "xxxxxxx", authDomain: "xxxxxxx",