2 Star 0 Fork 0

jiadeyu/手写代码系列

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
17_Vue数据响应.html 808 Bytes
一键复制 编辑 原始数据 按行查看 历史
德帅 提交于 2022-08-05 21:20 . 手写vue2数据响应
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vue2数据响应</title>
</head>
<body>
<script type="module">
import observe from './js/17_Vue2Reactive/observe.js'
let obj = {
a: {
a1: [1, 2, 3, 4],
a2: {
a22: '我是a22'
},
a3: '我是a3'
},
b: '我是b' ,
c: ['c1', 'c2', ['c11', 'c22']]
}
observe(obj)
console.log(obj)
obj.c.push('c3')
// let obj1 = 'not a object'
// observe(obj1)
// console.log(obj1)
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/jiadeyu/handwritten-code-series.git
[email protected]:jiadeyu/handwritten-code-series.git
jiadeyu
handwritten-code-series
手写代码系列
master

搜索帮助