基於vue-cli的vuex配置

首先成功運行vue-cli項目html

安裝vuexvue

cnpm i vuex --save

修改配置文件vuex

storevue-cli

新建文件夾store(與router同級)
而後在store目錄下新建index.jsnpm

import Vue from 'vue';
import Vuex from 'vuex';

Vue.use(Vuex);
export default new Vuex.Store({
  strict: process.env.NODE_ENV !== 'production',
  modules: {

  },
  getters: {

  },
  actions: {

  },
});

main.jssegmentfault

import Vue from 'vue'
import router from './router'
import store from './store'

Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
  router,
  store
}).$mount('#app')

index.htmlapp

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>vue-cli</title>
  </head>
  <body>
  <div id="app">
    <router-view></router-view>
  </div>
  </body>
</html>

上面對main.js和index.html作了修改。主要是符合我的的用法,這樣的好處是根組件只有index.html(若是能夠理解爲組件),而不是有app.vue和index.html兩個。less

直觀上來看可能這樣就會出現每一個組件都要引一個導航欄的問題,這樣可能不太好。可是從過往的開發經驗來看,若是在app.vue中定義了導航欄,那麼相應的在app.vue中就要加入相應的業務邏輯,網站規模大了以後app.vue的業務邏輯會愈來愈多,不利於管理。(因此這裏app.vue就能夠刪除了)網站

以上是我的觀點和用法eslint

vue-cli添加less-loader
https://segmentfault.com/a/11...

相關文章
相關標籤/搜索