Skip to content

Latest commit

 

History

History
55 lines (41 loc) · 1.03 KB

README.md

File metadata and controls

55 lines (41 loc) · 1.03 KB

Vuex-learning-demo

Little demo developed by Vue.js and Vuex.

Overview

vuex

Usage

// clone project
git clone [email protected]:AlexBai1991/learning-vuex.git vuex-pro

cd vuex-pro && npm install

npm start

Technology

  • gulp
  • webpack
  • ES2015
  • Vue
  • Vuex
  • Sass

File-structure

.
├── css
│   ├── _mixin.scss
│   ├── _reset.scss
│   └── index.scss
├── index.html
└── js
    ├── components
    │   ├── App.vue
    │   └── Child.vue
    ├── index.js
    └── storage
        ├── action-types.js
        ├── actions.js
        ├── getters.js
        ├── index.js
        └── mutations.js

Reference