Пользователь пока ничего не рассказал о себе

Наибольший вклад в теги

Все теги (1)

Лучшие ответы пользователя

Все ответы (1)
  • Ошибка в Vue-Router: "NavigationDuplicated: Avoided redundant navigation to current location"?

    @BryantsevV
    ошибку заглушить можно только вот так.
    const originalPush = VueRouter.prototype.push;
    
    VueRouter.prototype.push = function push(location, onComplete, onAbort) {
        const result = originalPush.call(
            this,
            location,
            onComplete,
            onAbort
        );
        if (result) {
            return result.catch(err => {
                if (err.name !== 'NavigationDuplicated') {
                    throw err;
                }
            });
        }
        return result;
    };
    
    const originalReplace = VueRouter.prototype.replace;
    VueRouter.prototype.replace = function replace(location, onComplete, onAbort) {
        const result = originalReplace.call(
            this,
            location,
            onComplete,
            onAbort
        );
        if (result) {
            return result.catch(err => {
                if (err.name !== 'NavigationDuplicated') {
                    throw err;
                }
            });
        }
        return result;
    };
    Ответ написан
    Комментировать