Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(core): fix defineReactive unnecessary getters call fix #7280 #7302

Merged
merged 2 commits into from
Mar 7, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
refactor(core): strict arguments count compare
  • Loading branch information
DeyLak committed Dec 23, 2017
commit a8dbd4cc4e91cf8d6df500136131e56f92e98386
2 changes: 1 addition & 1 deletion src/core/observer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export function defineReactive (

// cater for pre-defined getter/setters
const getter = property && property.get
if (!getter && arguments.length <= 2) {
if (!getter && arguments.length === 2) {
val = obj[key]
}
const setter = property && property.set
Expand Down