加载中...
文章
794
标签
0
分类
17
首页
档案
标签
分类
清单
音乐
电影
友链
关于
小马Ti的博客
key的作用与原理
搜索
首页
档案
标签
分类
清单
音乐
电影
友链
关于
key的作用与原理
发表于
2024-12-10
|
更新于
2024-12-11
|
Vue2
|
总字数:
31
|
阅读时长:
1分钟
|
浏览量:
key的作用与原 理
作用
key作为数据的唯一标识,默认根据index.
原理
diff对比算法
文章作者:
小马Ti
文章链接:
http://example.com/2024/12/10/TyporaNotes/Typora_Vue2/key的作用与原理/
版权声明:
本博客所有文章除特别声明外,均采用
CC BY-NC-SA 4.0
许可协议。转载请注明来源
小马Ti的博客
!
赞助
上一篇
getters配置项
getters配置项getters配置项并不是必须要使用的,当state中的数据需要经过加工后再使用时,可以使用getters加工。 使用方法1.在store.js中追加getters配置1234567891011121314151617......// 准备getters——用于加工state中的数据const getters = { // state:真正的state calculate(state){ // 靠返回值决定自己的值 return state.sum * 10 }}//创建并暴露storeexport default new Vuex.Store({ ...... // 在store中配置getters getters}) 2.模板中读取数据123<!-- <h1>当前求和放大10倍为:{{ this.$store.state.sum *10 }}</h1>...
下一篇
mapActions和mapMutations
mapActions 和 mapMutations使用方法1.引入mapActions 和 mapMutations12import { mapMutations } from 'vuex';import {mapActions } from "vuex"; 2.在methods中调用mapActions和mapMutations方法1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950<template> <div> <h1>当前求和为:{{ this.$store.state.sum }}</h1> <!-- <h1>当前求和放大10倍为:{{ this.$store.state.sum *10...
评论
目录
1.
key的作用与原 理
1.1.
作用
1.2.
原理
1.2.1.
diff对比算法
简
0
%
搜索
数据加载中