Skip to content

Commit

Permalink
Revert "fix #4041, warn overriding Vue's internal methods (#4111)"
Browse files Browse the repository at this point in the history
This reverts commit 4078ce9.
  • Loading branch information
yyx990803 committed Nov 9, 2016
1 parent eb601ad commit 1bcc571
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
10 changes: 2 additions & 8 deletions src/core/instance/state.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ import {
noop
} from '../util/index'

import BuiltinVue from '../index'

export function initState (vm: Component) {
vm._watchers = []
initProps(vm)
Expand Down Expand Up @@ -145,16 +143,12 @@ function initMethods (vm: Component) {
if (methods) {
for (const key in methods) {
vm[key] = methods[key] == null ? noop : bind(methods[key], vm)
if (process.env.NODE_ENV !== 'production') {
methods[key] == null && warn(
if (process.env.NODE_ENV !== 'production' && methods[key] == null) {
warn(
`method "${key}" has an undefined value in the component definition. ` +
`Did you reference the function correctly?`,
vm
)
hasOwn(BuiltinVue.prototype, key) && warn(
`Avoid overriding Vue's internal method "${key}".`,
vm
)
}
}
}
Expand Down
10 changes: 0 additions & 10 deletions test/unit/features/options/methods.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,4 @@ describe('Options methods', () => {
})
expect(`method "hello" has an undefined value in the component definition`).toHaveBeenWarned()
})

it('should warn overriding builtin methods', () => {
new Vue({
methods: {
$emit () {
}
}
})
expect(`Avoid overriding Vue's internal method "$emit".`).toHaveBeenWarned()
})
})

0 comments on commit 1bcc571

Please sign in to comment.