Skip to content

Commit c50bbde

Browse files
committed
feat: add Vue.observable() for explicitly creating observable objects
1 parent ce7ca7b commit c50bbde

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

src/core/global-api/index.js

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { initAssetRegisters } from './assets'
88
import { set, del } from '../observer/index'
99
import { ASSET_TYPES } from 'shared/constants'
1010
import builtInComponents from '../components/index'
11+
import { observe } from 'core/observer/index'
1112

1213
import {
1314
warn,
@@ -44,6 +45,12 @@ export function initGlobalAPI (Vue: GlobalAPI) {
4445
Vue.delete = del
4546
Vue.nextTick = nextTick
4647

48+
// 2.6 explicit observable API
49+
Vue.observable = (obj: any): any => {
50+
observe(obj)
51+
return obj
52+
}
53+
4754
Vue.options = Object.create(null)
4855
ASSET_TYPES.forEach(type => {
4956
Vue.options[type + 's'] = Object.create(null)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import Vue from 'vue'
2+
3+
describe('Global API: observable', () => {
4+
it('should work', done => {
5+
const state = Vue.observable({
6+
count: 0
7+
})
8+
9+
const app = new Vue({
10+
render(h) {
11+
return h('div', [
12+
h('span', state.count),
13+
h('button', {
14+
on: {
15+
click: () => {
16+
state.count++
17+
}
18+
}
19+
}, '+')
20+
])
21+
}
22+
}).$mount()
23+
24+
expect(app.$el.querySelector('span').textContent).toBe('0')
25+
app.$el.querySelector('button').click()
26+
waitForUpdate(() => {
27+
expect(app.$el.querySelector('span').textContent).toBe('1')
28+
}).then(done)
29+
})
30+
})

0 commit comments

Comments
 (0)