Vuex 카운터 및 목록 표시 효과 구현

이 튜 토리 얼 은 Vuex 의 간단 한 용법 을 카운터 와 목록 으로 보 여 줍 니 다.
본 사례github
설치 부터 시작 페이지 까지 의 과정 을 바로 건 너 뜁 니 다.설치 할 때 필요 한 경 로 를 선택 하 십시오.
우선,src 디 렉 터 리 에 새 store 디 렉 터 리 와 해당 파일 을 만 들 고 구 조 는 다음 과 같 습 니 다.

index.js 파일 내용:

import Vue from "vue"
import Vuex from 'vuex'

Vue.use(Vuex);  //   new Vuex.Store  use  

export default new Vuex.Store({
 state:{
  count:0    //    count
 },
 mutations:{
  increment(state){
   state.count++
  }
 }
})
src 의 main.js 에 store 등록

new Vue({
 el: '#app',
 router,
 store,    //  store
 components: { App },
 template: '<App/>'
});
components 폴 더 에 Num.vue 구성 요 소 를 새로 만 들 었 습 니 다.내용 은 다음 과 같 습 니 다.

<template>
 <div>
  <input type="button" value="+" @click="incr" />
  <input type="text" id="input" v-model="count"/>
  <input type="button" value="-"/>
  <br/>
  <router-link to="/list">  demo</router-link>
 </div>
</template>

<script>
 import store from '../store'
 export default {

  computed:{
   count:{
    get:function () {
     return store.state.count
    },
    set:function (val) {
     store.state.count = val
    }
   }
  },

  methods:{
   incr(){
    // store.commit("increment")
    store.commit("increment")  //    
   }
  }
 }
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>

</style>
router 폴 더 내 설정 경로:

import Vue from 'vue'
import Router from 'vue-router'
import Num from '../components/Num'
import List from '../components/List'

Vue.use(Router)

export default new Router({
 routes: [
  {
   path:'/num',
   component:Num
  },

  {
   path:"*",
   redirect:"/num"
  }
 ]
})
완료 후 시동 을 걸 면 결 과 를 볼 수 있 습 니 다.계수기 시연 완료.
지금부터 목록 프레젠테이션 을 시작 합 니 다.
src 디 렉 터 리 에 api 폴 더 를 새로 만 들 고 api 파일 을 새로 만 듭 니 다.

api/cover.js:

const _cover = [
 {"id": 1, "title": "iPad 4 Mini", "price": 500.01, "inventory": 2},
 {"id": 2, "title": "H&M T-Shirt White", "price": 10.99, "inventory": 10},
 {"id": 3, "title": "Charli XCX - Sucker CD", "price": 19.99, "inventory": 5}
];


export default {
 getCover(cb) {
  setTimeout(() => cb(_cover), 100);
/*  $.get("/api/data",function (data) {
   console.log(data);
  })*/

 },
}
store/modules/cover.js 수정:(데이터 모델 정의)

import cover from '../../api/cover'

const state = {
 all:[]
};

const getters={
 allCover:state=>state.all  //getter        
};

const actions = {
 getAllCover({commit}){
  cover.getCover(covers=>{
   commit('setCover',covers)    //  setCover  。
  })
 },
 removeCover({commit},cover){
  commit('removeCover',cover)
 }
};

const mutations = {  //mutations    state。
 setCover(state,covers){
  state.all = covers
 },
 removeCover(state,cover){
  console.log(cover.id);
  state.all = state.all.filter(function (OCover) {
   return OCover.id !== cover.id
  })
 }
};

export default {
 state,getters,actions,mutations
}
store 내 index.js 에 등 록 된 데이터 모델:

import Vue from "vue"
import Vuex from 'vuex'
import cover from './modules/cover'

Vue.use(Vuex);  //   new Vuex.Store  use  

export default new Vuex.Store({

 modules:{
  cover     //  cover    
 },

 state:{
  count:0    //    count
 },
 mutations:{
  increment(state){
   state.count++
  }
 }
})
components 폴 더 에 list.vue 구성 요 소 를 새로 만 들 었 습 니 다.내용 은 다음 과 같 습 니 다.

<template>
 <div class="list">
  <ul>
   <li v-for="cover in covers" @click="removeCover(cover)">
    {{cover.title}}
   </li>
  </ul>
  <p>
   {{covers}}
  </p>
  <h2>     li。</h2>
  <router-link to="/num">   demo</router-link>

 </div>
</template>

<script>
import {mapGetters,mapActions} from 'vuex';

export default {
 computed:mapGetters({
  covers:"allCover"   //  module getter    
 }),

 methods:mapActions([
  'removeCover'    //  module action    
 ]),

 created(){
  this.$store.dispatch('getAllCover')  //  cover     getAllCover action          。
 }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
 .list{
  text-align: left;
 }
</style>
경로 에 새 구성 요 소 를 등록 합 니 다:

import Vue from 'vue'
import Router from 'vue-router'
import Num from '../components/Num'
import List from '../components/List'

Vue.use(Router)

export default new Router({
 routes: [
  {
   path:'/num',
   component:Num
  },
  {
   path:'/list',
   component:List
  },
  {
   path:"*",
   redirect:"/num"
  }
 ]
})
완료 후 접근http://localhost:8080/#/list결 과 를 볼 수 있다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기