Create a todo list using Firebase and Vue.js

Minimum Requirements

Instructions

Set-up Firebase access

Set-up access rules under Firebase > Database > Rules. Note: These rules give anyone, even people who are not users of your app, read and write access to your database. Do not use this in production.

{
  "rules": {
    ".read": true,
    ".write": true
  }
}

Live Preview

In this live preview, we are using Firebase to store our tasks, and keep clients in sync. Feel free to open this preview in separate browser windows, and watch to-do list update as you make changes.

Code