├── .gitignore ├── Index.vue ├── assets └── style │ └── main.css ├── package.json ├── readme.md └── server └── app.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinsOnuoha/vue-base64/HEAD/.gitignore -------------------------------------------------------------------------------- /Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinsOnuoha/vue-base64/HEAD/Index.vue -------------------------------------------------------------------------------- /assets/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinsOnuoha/vue-base64/HEAD/assets/style/main.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinsOnuoha/vue-base64/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinsOnuoha/vue-base64/HEAD/readme.md -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinsOnuoha/vue-base64/HEAD/server/app.js --------------------------------------------------------------------------------