An open API service indexing awesome lists of open source software.

https://github.com/zeppaman/vue-js-tutorial


https://github.com/zeppaman/vue-js-tutorial

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# install node
https://nodejs.org/it/download/
https://cli.vuejs.org/guide/troubleshooting.html#running-installation-with-sudo-or-as-root

#Download the repo

```
git clone https://github.com/zeppaman/vue-js-tutorial.git vuejs
cd vuejs #enter the folder
code . #open vscode
# or open it using UI
```

# run the demo
```
cd example #enter example forder
npm install
npm run serve
```

# install vue.je (application from scratch)
```
npm_config_unsafe_perm=true # if you are root
npm install -g @vue/cli
vue create ui
npm install vue-router@4
npm install axios
```

# JSON Server
```
npm install -g json-server
cd db
json-server db.json
```