https://github.com/zeppaman/vue-js-tutorial
https://github.com/zeppaman/vue-js-tutorial
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zeppaman/vue-js-tutorial
- Owner: zeppaman
- License: mit
- Created: 2022-07-07T15:28:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-08T08:59:34.000Z (over 3 years ago)
- Last Synced: 2025-01-23T13:13:48.567Z (9 months ago)
- Language: Vue
- Size: 288 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```