Web programming project using Vue JS to create a simple store web application
Go to file
Shaun Reed 2cfe6094c8 Update README to explain project 2021-12-18 13:16:17 -05:00
public Finish work on Vue Ajax project 2021-12-17 10:50:54 -05:00
src Finish work on Vue Ajax project 2021-12-17 10:50:54 -05:00
.gitignore Finish work on Vue Ajax project 2021-12-17 10:50:54 -05:00
README.md Update README to explain project 2021-12-18 13:16:17 -05:00
babel.config.js Finish work on Vue Ajax project 2021-12-17 10:50:54 -05:00
package-lock.json Update README to explain project 2021-12-18 13:16:17 -05:00
package.json Finish work on Vue Ajax project 2021-12-17 10:50:54 -05:00
screenshot.png Update README to explain project 2021-12-18 13:16:17 -05:00

README.md

sreed-web-programming

Web programming project using Vue JS to create a simple store web application.

Tutorial series followed

This project uses Vue Single File Components, which in general must be built into the project using vue-cli.

Axios is also used to read a static JSON file to populate reviews on the product.

Project setup

Using NodeSource PPA on Ubuntu to install latest version of nodejs and npm

curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt install nodejs
sudo npm install -g npm
git clone git@gitlab.com:shaunrd0/sreed-web-programming.git
cd sreed-web-programming
npm install

The following instructions were (mostly) automatically generated by running vue-cli create sreed-web-programming.

Serve Application for Development

npm run serve

Compiles Application for Production

npm run build

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.