Vuex学习笔记1

Posted eret9616

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vuex学习笔记1相关的知识,希望对你有一定的参考价值。

npm install vuex --save

 

....../vuex/store.js:

 

import Vuex from ‘vuex‘;

import Vue from ‘vue‘;

Vue.use(vuex);

 

const state = { count:1}

 

const mutations = {

    add(state){

    state.count++;   

    },   

   reduce(state){

    state.count--;   

    }

}

 

export default new Vuex.Store({   state,mutations  });

 

Count.vue

<template>

<div>

<h2>{{msg}}<h2>

<h3>{{$store.state.count}}</h3>

<p>

    <button @click="$store.commit(‘add‘)">+</button>

    <button @click="$store.commit(‘reduce‘)">-</button>

</p>

</div>

</template>

 

<script>

import store from ‘@/vuex/store.js‘

export default{

 

data(){

   return {

       msg:"hello vuex"  

    }

},

store

 

}

</script>

 

以上是关于Vuex学习笔记1的主要内容,如果未能解决你的问题,请参考以下文章

Vue 学习总结笔记

vuex学习笔记

vuex的学习笔记

vuex的学习笔记

vuex学习笔记

Vue第八天学习笔记之Promise和Vuex详解