mirror of
https://github.com/vuejs/vue.git
synced 2024-11-22 04:39:46 +00:00
chore: fix typo (#12360) [skip ci]
This commit is contained in:
parent
05d05c0e69
commit
86f8b52822
@ -14,7 +14,7 @@ describe('Global API: set/delete', () => {
|
||||
}).then(done)
|
||||
})
|
||||
|
||||
it('should update a observing object', done => {
|
||||
it('should update an observing object', done => {
|
||||
const vm = new Vue({
|
||||
template: '<div>{{foo.x}}</div>',
|
||||
data: { foo: { x: 1 }}
|
||||
@ -26,7 +26,7 @@ describe('Global API: set/delete', () => {
|
||||
}).then(done)
|
||||
})
|
||||
|
||||
it('should update a observing array', done => {
|
||||
it('should update an observing array', done => {
|
||||
const vm = new Vue({
|
||||
template: '<div><div v-for="v,k in list">{{k}}-{{v}}</div></div>',
|
||||
data: { list: ['a', 'b', 'c'] }
|
||||
|
Loading…
Reference in New Issue
Block a user