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결 과 를 볼 수 있다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Nuxt.js의 Vuex의 점포 분할에 따른 구조구성 요소 간의 값 교환이 필요 없음 구성 요소의 상업 논리를 상점으로 잘라내기 Vuex에서 state로 값을 유지하고 Getter로 구성 요소 측면에서 가져옵니다.mutaations를 통해 값을 변경하여 actio...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.