Vue-typescript-element-template
Git倉庫地址:
https://github.com/forijk/vue-typescript-element-template.gitcss
├── babel.config.js ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── assets │ │ ├── logo.png │ │ └── page404.png │ ├── common │ │ ├── Bus.ts │ │ ├── axios.ts │ │ ├── axiosExtensions.ts │ │ ├── common.scss │ │ └── interpators.ts │ ├── components │ │ ├── Breadcrumb.vue │ │ ├── Header.vue │ │ ├── Layout.vue │ │ └── Side.vue │ ├── global.d.ts │ ├── pages │ │ ├── home │ │ │ ├── App.vue │ │ │ └── main.ts │ │ ├── index │ │ │ ├── App.vue │ │ │ ├── main.ts │ │ │ ├── router.ts │ │ │ ├── service │ │ │ │ ├── apiMap.ts │ │ │ │ └── apimanage.serve.ts │ │ │ ├── store │ │ │ │ ├── actions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mutation-types.ts │ │ │ │ └── state.ts │ │ │ └── views │ │ └── initialize.ts │ ├── plugins │ │ ├── inject.ts │ │ ├── notify.ts │ │ └── vue.d.ts │ └── utils ├── tsconfig.json └── vue.config.js