VueJS is a modern Javascript framework that makes it easy to handle data flow, simply by including attributes in your HTML tags. In this guide, we'll be building a simple todo list app to get up and running with VueJS. Setup and Installation There are two ways to setup Vue: through a NodeJS project, or by including a script inside of your HTML file. Since we're just starting out, we'll use a script inside of our index.html file. We can set up our index.html file like this. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Todooey - A Simple Todo List App</title> <link rel="stylesheet" href="style.css"> <script src="https://unpkg.com/vue"></script> </head> <body> <div id="app"> </div> ...