You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An example app using Vue.js 2 and a Firebase database.
Vue = easy connecting between data and interface.
Firebase = easy app database setup (a real database, not a simulated local one). This is just one of the many services that Firebase can offer your app.
See package.json for a list of things to make sure to have installed using npm (to fill that node_modules folder).
The 3 files to code inside of:
main.js
App.vue: fill in the config file to match your personal firebase database access keys etc.
index.html
Important commands:
vue init webpack vuejsfirebase if you want to create the vue project from scratch.
cd vuejsfirebase to get into the folder for npm commands to work.
npm install and npm install ... to set up modules as needed.
npm run dev to run the view in your browser.
Notes Automatically Generated by Setup
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report