├── .gitignore ├── README.md ├── index.html ├── package.json └── src ├── css └── style.css └── js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shershen08/vue.js-v2-crud-application/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shershen08/vue.js-v2-crud-application/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shershen08/vue.js-v2-crud-application/HEAD/package.json -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shershen08/vue.js-v2-crud-application/HEAD/src/css/style.css -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shershen08/vue.js-v2-crud-application/HEAD/src/js/index.js --------------------------------------------------------------------------------