N
N
Nikolay Semenov2017-07-05 14:22:20
JavaScript
Nikolay Semenov, 2017-07-05 14:22:20

How to make router.push not from Vue component and not from Vuex?

Hello.
There is such a main.js
export const router = new VueRouter({
routes, // paths from another file are imported here routes
mode: 'history'
});
in another file there is a function:

regSocialUser (user) {
        console.log(user);
        setTimeout(() => {
            Vue.http.post('auth', {data : user} , {
                emulateJSON: true
            })
                .then(response => {
                    if (response.body === 'done') {
                        localStorage.setItem('userAuth', 'yes')
                        this.userAuth = true;
                        debugger;
                        router.push('/mobile/profile')
                    } else {

                        this.userAuth = false;
                        console.log(this.userAuth);
                    }
                    console.log(response);
                }, error => {
                    console.log(error);
                });

        }, 100)
    }

I import into it
import router from '../main'
but route is undefined
Help please

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
Sergey Novikov, 2017-07-05
@nickola105

Try like this:

...
this.$router.push("/mobile/profile");
...

N
Negwereth, 2017-07-05
@Negwereth

import {router} from '../main'
You are not doing a default export.

Y
Yeldos Adetbekov, 2017-07-05
@dosya97

It is necessary to connect in main.js router. And side *.js after it in the same file.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question