Skip to content

Commit 755df46

Browse files
committed
#60 indentation
1 parent 6b91896 commit 755df46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1699,7 +1699,7 @@ List of 300 VueJS Interview Questions
16991699
message: 'Hello, this is a Mixin'
17001700
}
17011701
}
1702-
}
1702+
}
17031703
new Vue({
17041704
mixins: [mixin],
17051705
data: function () {
@@ -1722,14 +1722,14 @@ List of 300 VueJS Interview Questions
17221722

17231723
new Vue({
17241724
el: '#root',
1725-
mixins:[myMixin],
1725+
mixins: [myMixin],
17261726
created(){
17271727
console.log("Called from Component")
17281728
}
17291729
})
17301730

1731-
//Called from Mixin
1732-
//Called from Component
1731+
// Called from Mixin
1732+
// Called from Component
17331733
```
17341734
3. The options that expect object values(such as methods, components and directives) will be merged into the same object. In this case, the component’s options will take priority when there are conflicting keys in these objects.
17351735
```javascript

0 commit comments

Comments
 (0)