Simple Demo App
Demos how Vue + Axios from a CDN can be used directly in a HTML to create beautiful apps :)
What we do here?
- Create a simple HTML
- Include Vue + Vue Router + Axios from CDN
- Authenticate user email (no server - only mocks!)
- Fetch posts for user
What needs to be done?
- Pagination buttons!
Components of this App
index.html
- Includes all the javascript files
- Registers components and router
- Loads Vue
*.vue.js files
- We do not use
vue-loader
, but go bare-bones. - All "vue components" are plain javascript objects to begin with. And, these come from
*.vue.js
files
Anything Else?
That's all there is to this world.