Component({
methods: {
navigateTo() {
this.router.navigateTo({
url: '/finally/index'
}).then(() => {
console.log('then')
}).finally(() => {
console.log('finally')
})
}
}
})
TypeError: Cannot read property 'then' of undefined
