Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aurelienloyer/handson-vuejs
📚💻 Codelab Vue.js - Opérationnel avec Vue.js
https://github.com/aurelienloyer/handson-vuejs
Last synced: 12 days ago
JSON representation
📚💻 Codelab Vue.js - Opérationnel avec Vue.js
- Host: GitHub
- URL: https://github.com/aurelienloyer/handson-vuejs
- Owner: AurelienLoyer
- Created: 2017-02-04T11:53:44.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-06-08T15:30:54.000Z (over 5 years ago)
- Last Synced: 2024-04-14T11:07:42.520Z (7 months ago)
- Language: Shell
- Homepage: https://aurelien-loyer.fr/handson-vuejs/
- Size: 2.44 MB
- Stars: 12
- Watchers: 5
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction
Pendant ce codelab, nous allons créer une petite application d'E-Commerce avec la bibliothèque Vue.js.
* https://slides.com/aurelienloyer/handson-vuejs
* https://slides.com/aurelienloyer/handson-vuejs/live## Prérequis
Pour faire ce codelab, vous avez besoin des outils suivants :
* GIT
* NodeJS 7.x
* un IDE (WebStorm ou Visual Studio Code...)Pour aider au développement, vous pouvez utiliser l'extention Chrome **Vue-devtools** (https://github.com/vuejs/vue-devtools)
Afin d'éviter les problèmes de réseau le jour J, veuillez cloner ce projet et exécuter les commandes suivantes :
```shell
git clone -b step0 https://github.com/T3kstiil3/handson-vuejsnpm install -g @vue/cli
# OR
yarn global add @vue/cli
```Pour vérifier que tout marche correctement:
```
vue --version
vue --help
```
Vous devriez avoir une version > 3.* et une liste de command pour commencer votre projet.##
Tous les exercices qui vont suivre se baseront sur deux pages statiques que nous avons développées.
Le but sera d'intégrer ces pages dans une application VueJS.Pour récupérer ces templates, veuillez exécuter la commande suivante :
```shell
git clone -b step0 https://github.com/T3kstiil3/handson-vuejs
```## Exercices
https://aurelien-loyer.fr/handson-vuejs/