Skip to content

Commit 6dac3db

Browse files
committed
feat: rename catchError -> errorCaptured
1 parent 514b90b commit 6dac3db

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/core/util/error.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ export function handleError (err: Error, vm: any, info: string) {
88
if (vm) {
99
let cur = vm
1010
while ((cur = cur.$parent)) {
11-
if (cur.$options.catchError) {
11+
if (cur.$options.errorCaptured) {
1212
try {
13-
const propagate = cur.$options.catchError.call(cur, err, vm, info)
13+
const propagate = cur.$options.errorCaptured.call(cur, err, vm, info)
1414
if (!propagate) return
1515
} catch (e) {
16-
globalHandleError(e, cur, 'catchError')
16+
globalHandleError(e, cur, 'errorCaptured hook')
1717
}
1818
}
1919
}

test/unit/features/options/catchError.spec.js test/unit/features/options/errorCaptured.spec.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Vue from 'vue'
22

3-
describe('Options catchError', () => {
3+
describe('Options errorCaptured', () => {
44
let globalSpy
55

66
beforeEach(() => {
@@ -26,7 +26,7 @@ describe('Options catchError', () => {
2626
}
2727

2828
new Vue({
29-
catchError: spy,
29+
errorCaptured: spy,
3030
render: h => h(Child)
3131
}).$mount()
3232

@@ -49,7 +49,7 @@ describe('Options catchError', () => {
4949
data: {
5050
error: null
5151
},
52-
catchError (e, vm, info) {
52+
errorCaptured (e, vm, info) {
5353
expect(vm).toBe(child)
5454
this.error = e.toString() + ' in ' + info
5555
},
@@ -82,7 +82,7 @@ describe('Options catchError', () => {
8282
}
8383

8484
new Vue({
85-
catchError (err, vm, info) {
85+
errorCaptured (err, vm, info) {
8686
spy(err, vm, info)
8787
return true
8888
},
@@ -108,14 +108,14 @@ describe('Options catchError', () => {
108108

109109
let err2
110110
const vm = new Vue({
111-
catchError () {
111+
errorCaptured () {
112112
err2 = new Error('foo')
113113
throw err2
114114
},
115115
render: h => h(Child, {})
116116
}).$mount()
117117

118118
expect(globalSpy).toHaveBeenCalledWith(err, child, 'created hook')
119-
expect(globalSpy).toHaveBeenCalledWith(err2, vm, 'catchError')
119+
expect(globalSpy).toHaveBeenCalledWith(err2, vm, 'errorCaptured hook')
120120
})
121121
})

0 commit comments

Comments
 (0)