-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVue.js
70 lines (68 loc) · 1.69 KB
/
Vue.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { observer, Watcher, Dep } from './Observer.js'
function initData(vm, data, computed) {
Object.keys(computed).forEach(key => {
data[key] = null
})
vm.data = observer(data)
Object.keys(vm.data).forEach(key => {
Object.defineProperty(vm, key, {
enumerable: false,
configurable: true,
get: function () {
return vm.data[key]
},
set: function (newVal) {
vm.data[key] = newVal
}
})
})
}
function initMethods(vm, methods) {
Object.keys(methods).forEach(key => {
vm[key] = methods[key]
})
}
function initComputed(vm, computed) {
Object.keys(computed).forEach(key => {
Dep.target = new Watcher(vm, null, () => {
vm[key] = computed[key].bind(vm)()
})
vm[key] = computed[key].bind(vm)()
Dep.target = null
})
}
function initWatch(vm, watch) {
Object.keys(watch).forEach(key => {
new Watcher(vm, key, watch[key])
})
}
function mount(vm, el) {
const rootDom = document.querySelector(el)
const regex = /{{2}.*?}{2}/g
let sourceTemplate = rootDom.innerText
for (const match of sourceTemplate.matchAll(regex)) {
const key = match[0].slice(2, match[0].length - 2)
rootDom.innerText = sourceTemplate.replaceAll(match[0], vm[key])
new Watcher(vm, key, newVal => {
rootDom.innerText = sourceTemplate.replace(match[0], newVal)
})
}
}
function Vue(options) {
const {
el,
data = {},
watch = {},
computed = {},
methods = {},
created
} = options
const vm = this
initMethods(vm, methods)
initData(vm, data, computed)
initComputed(vm, computed)
initWatch(vm, watch)
created && created.bind(vm)() //created 钩子函数
el && mount(vm, el)
}
export default Vue