State —数据仓库
getter—用来获取数据的
可进行计算
Mutation——用来修改数据的
同步修改
Action —用来提交mutation
可进行异步操作
...
yekong
3年前 (2021-09-01)
喜欢
多个视图依赖于同一状态
读的作用
来自不同视图的行为需要改变同一个状态
改的作用
适用于中型大型页面使用。
...
yekong
3年前 (2021-09-01)
喜欢
Vuex是一个专门为Vue.js应用程序开的状态管理模式
它采用集中式存储管理应用的所有组件的状态
并以相应的规则保证以一种可预测的方式发生变化
Vuex 是实现组件全局状态(数据)管理的一种机制,可以方便的实现组件放数据的共享
...
yekong
3年前 (2021-09-01)
喜欢
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible&quo...
yekong
3年前 (2021-08-28)
喜欢
html
<transition name="component" appear>
<cim v-if="type==0" ></cim>
</transition&g...
yekong
3年前 (2021-08-28)
喜欢
html
<qrCode @getlist="gethead" :list="headlist" class="ml16"/>
<el-table
ref="multip...
yekong
3年前 (2021-08-26)
喜欢
index自动累加,超过list长度index则归零
getactive() {
if (this.active < this.list.length - 1) {
this.active = this.active + 1
} else {
...
yekong
3年前 (2021-08-23)
喜欢
<img v-if="weather.text_day=='晴'" src="dist/img/tianqi/icon_qing.jpg" alt="">
...
yekong
3年前 (2021-08-22)
喜欢
invert($color):反回一个反相色,红、绿、蓝色值倒过来,而透明度不变。
sass -i
>> invert(#f36)
#00cc99
...
yekong
3年前 (2021-08-19)
喜欢
complement($color):返回一个补充色,相当于adjust-hue($color,180deg);
sass -i
>> complement(#f36)
#33ffcc
...
yekong
3年前 (2021-08-19)
喜欢