~~~
<template>
<div>
<p>click {{count}} times, count is {{evenOrOdd}}</p>
<button @click="increment">+</button>
<button @click="decrement">-</button>
<button @click="incrementIfOdd">increment if odd</button>
<button @click="incrementAsync">increment async</button>
</div>
</template>
<script>
import {mapState, mapGetters, mapActions} from 'vuex'
export default {
name: 'Hello',
mounted () {
console.log(this.$store)
},
//方式1
// computed: {
// count () {
// return this.$store.state.count
// },
// evenOrOdd () {
// return this.$store.getters.evenOrOdd
// }
// },
// methods: {
// increment () {
// this.$store.dispatch('increment')
// },
// decrement () {
// this.$store.dispatch('decrement')
// },
// incrementIfOdd () {
// this.$store.dispatch('incrementIfOdd')
// },
// incrementAsync () {
// this.$store.dispatch('incrementAsync')
// }
//}
//方式2
computed: {
...mapState(['count']),
...mapGetters(['evenOrOdd'])
},
methods: {
...mapActions(['increment', 'decrement', 'incrementIfOdd', 'incrementAsync'])
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>
~~~
- 开发工具
- VsCode
- 常用插件
- Html5
- 标签
- video
- form
- 读取文件
- 地理位置
- canvas
- 本地存储
- localStorage
- sessionStorage
- 网络状态
- Css3
- 背景
- 边框
- 边框图片
- 文字阴影
- 渐变
- Js
- ES6
- 常量和变量
- 模板字符串
- 箭头函数
- 解构赋值
- Spread Operator
- import export
- Promise
- 打包
- webpack
- 安装
- 为什么要打包
- 核心概念
- 热更新
- 入门例子
- js打包
- css打包
- vue
- 简介
- Vue-cli
- 搭建
- 打包发布
- eslint
- Mint-ui
- Vuex
- 状态管理模式
- 使用
- main.js
- store
- component
- Mockjs
- 简介
- EasyMock