Skip to content

DK-Kami/vue-cli-plugin-kami

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

83 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

About

🦊 Preset for Vue application. With a ready-made architecture

NPM plugin

Install

For usage copy and paste it in your directory console

vue add vue-cli-plugin-kami

Architecture

Application architecture

Application architecture

Directory Structure

Generator has created these files:

src
β”œβ”€β”€ helper
β”‚   └── mixins
β”‚       β”œβ”€β”€ dialog.js             πŸ‘ˆ Mixin for dialog components
β”‚       └── main.js               πŸ‘ˆ File with all mixins!
β”œβ”€β”€ middleware
β”‚   β”œβ”€β”€ WebClient.js              πŸ‘ˆ Axios config
β”‚   └── services                  πŸ‘ˆ All app services
β”‚       └── ExampleService.js
β”œβ”€β”€ router
β”‚   β”œβ”€β”€ index.js
β”‚   β”œβ”€β”€ initListners.js           πŸ‘ˆ Inject all listners in router instance
β”‚   β”œβ”€β”€ routes
β”‚   └── listners
β”‚       β”œβ”€β”€ beforeEach.js         πŸ‘ˆ Hook before page started load
β”‚       β”œβ”€β”€ beforeResolve.js      πŸ‘ˆ Hook after all router hook has been resolved
β”‚       └── index.js
└── store
    β”œβ”€β”€ index.js
    β”œβ”€β”€ VuexModule.js             πŸ‘ˆ Π‘lass that describes all Vuex modules
    └── modules
        β”œβ”€β”€ example.js
        └── index.js