Skip to content

Commit 734c891

Browse files
authored
Merge pull request sudheerj#11 from bekliev/patch-1
Validated sudheerj#15
2 parents 437a2cb + db32259 commit 734c891

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -707,8 +707,8 @@ List of 300 VueJS Interview Questions
707707
```
708708
You can overcome this scenario using the Vue.set(object, key, value) method or Object.assign(),
709709
```javascript
710-
Vue.set(vm.user, 'email', john@email.com);
711-
(or)
710+
Vue.set(vm.user, 'email', 'john@email.com');
711+
// (or)
712712
vm.user = Object.assign({}, vm.user, {
713713
email: john@email.com
714714
})
@@ -4945,4 +4945,4 @@ List of 300 VueJS Interview Questions
49454945
49464946
230. ### ?
49474947
4948-
**[⬆ Back to Top](#table-of-contents)**
4948+
**[⬆ Back to Top](#table-of-contents)**

0 commit comments

Comments
 (0)