├── .gitignore ├── README.md ├── config └── DB.js ├── expressRoutes └── itemRoutes.js ├── index.html ├── models └── Item.js ├── package.json ├── server.js ├── src ├── App.vue ├── components │ ├── CreateItem.vue │ ├── DisplayItem.vue │ └── EditItem.vue └── main.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .git 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/README.md -------------------------------------------------------------------------------- /config/DB.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | DB: 'mongodb://localhost:27017/vueexpress' 3 | }; 4 | -------------------------------------------------------------------------------- /expressRoutes/itemRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/expressRoutes/itemRoutes.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/index.html -------------------------------------------------------------------------------- /models/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/models/Item.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/server.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/CreateItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/src/components/CreateItem.vue -------------------------------------------------------------------------------- /src/components/DisplayItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/src/components/DisplayItem.vue -------------------------------------------------------------------------------- /src/components/EditItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/src/components/EditItem.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/src/main.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrunalLathiya/VueNodeTutorial/HEAD/webpack.config.js --------------------------------------------------------------------------------