Vuex实现计数器以及列表展示效果

本篇教程将以计数器及列表展示两个例子来讲解Vuex的简单用法

本案例nofollow" target="_blank" href="https://github.com/axel10/Vuex_demo-Counter-and-list">github

从安装到启动初始页面的过程都直接跳过。注意安装时选择需要路由。

首先,src目录下新建store目录及相应文件,结构如下:

index.js文件内容

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

注册store components: { App },template: '' });

components文件夹内新建Num.vue组件,内容如下

router文件夹内配置路由:

Vue.use(Router)

export default new Router({
routes: [
{
path:'/num',component:Num
},{
path:"*",redirect:"/num"
}
]
})

完成后启动,即可看到结果。计数器演示完成。

现在开始列表演示。

src目录下新建api文件夹,再新建api文件

api/cover.js:

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

},}

修改store/modules/cover.js:(定义数据模型)

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中注册数据模型:

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组件,内容如下:

  • {{covers}}

    请尝试点击li。

  • 路由中注册新组件:

    Vue.use(Router)

    export default new Router({
    routes: [
    {
    path:'/num',{
    path:'/list',component:List
    },redirect:"/num"
    }
    ]
    })

    完成后访问http://localhost:8080/#/list,即可看到结果。

    以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

    相关文章

    问题现象 elmentui的el-tree数据加载问题,导致第一次加载选中当前节点和高亮当前节点没有生效。 解决方...
    因为刚打开文件,vscode默认是预览状态,如果编辑过之后,就不会有这个问题。 可以通过双击将预览状态接...
    前言 上篇文章我们介绍了国产SM4加密算法的后端java实现方案。没有看过的小伙伴可以看一下这篇文章。 h...
    在项目中引入动态路由时报错 写法: 报错: Module build failed (from ./node_modules/_eslint-loader@2...
    问题产生 在使用babel编译es6时,遇到报错Uncaught ReferenceError: regeneratorRuntime is not define...
    父组件的编写 <a:orgCode=orgCode ></a> 在data里面增加...