Vue Router for a div
up vote
0
down vote
favorite
i have a home.vue component and inside the template i have multiple div’s with class names and ids and i have navigation links which i wanted to click and route to that certain div using the classnames or id’s is there anyway to do using vue-router ?
i tried out to use
<li><router-link to="#about" >About Us</router-link></li>
for routing it to #aboutus id
of the div
but i cannot do it and i searched internet , didnt find any useful resource help me out .
check out the imgur image here
javascript node.js vue.js vue-router
add a comment |
up vote
0
down vote
favorite
i have a home.vue component and inside the template i have multiple div’s with class names and ids and i have navigation links which i wanted to click and route to that certain div using the classnames or id’s is there anyway to do using vue-router ?
i tried out to use
<li><router-link to="#about" >About Us</router-link></li>
for routing it to #aboutus id
of the div
but i cannot do it and i searched internet , didnt find any useful resource help me out .
check out the imgur image here
javascript node.js vue.js vue-router
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
i have a home.vue component and inside the template i have multiple div’s with class names and ids and i have navigation links which i wanted to click and route to that certain div using the classnames or id’s is there anyway to do using vue-router ?
i tried out to use
<li><router-link to="#about" >About Us</router-link></li>
for routing it to #aboutus id
of the div
but i cannot do it and i searched internet , didnt find any useful resource help me out .
check out the imgur image here
javascript node.js vue.js vue-router
i have a home.vue component and inside the template i have multiple div’s with class names and ids and i have navigation links which i wanted to click and route to that certain div using the classnames or id’s is there anyway to do using vue-router ?
i tried out to use
<li><router-link to="#about" >About Us</router-link></li>
for routing it to #aboutus id
of the div
but i cannot do it and i searched internet , didnt find any useful resource help me out .
check out the imgur image here
javascript node.js vue.js vue-router
javascript node.js vue.js vue-router
asked Nov 10 at 4:45
JOGI ROHIT
32
32
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You don't need vue router for this. All you are doing is trying to scroll to a div on your page so why not try something like this:
<li>
<a href="#" @click.prevent="goToDiv"><span>Go To</span></a>
</li>
and in your script:
methods:
goToDiv()
var elmnt = document.getElementById("yourId");
elmnt.scrollIntoView();
,
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You don't need vue router for this. All you are doing is trying to scroll to a div on your page so why not try something like this:
<li>
<a href="#" @click.prevent="goToDiv"><span>Go To</span></a>
</li>
and in your script:
methods:
goToDiv()
var elmnt = document.getElementById("yourId");
elmnt.scrollIntoView();
,
add a comment |
up vote
1
down vote
accepted
You don't need vue router for this. All you are doing is trying to scroll to a div on your page so why not try something like this:
<li>
<a href="#" @click.prevent="goToDiv"><span>Go To</span></a>
</li>
and in your script:
methods:
goToDiv()
var elmnt = document.getElementById("yourId");
elmnt.scrollIntoView();
,
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You don't need vue router for this. All you are doing is trying to scroll to a div on your page so why not try something like this:
<li>
<a href="#" @click.prevent="goToDiv"><span>Go To</span></a>
</li>
and in your script:
methods:
goToDiv()
var elmnt = document.getElementById("yourId");
elmnt.scrollIntoView();
,
You don't need vue router for this. All you are doing is trying to scroll to a div on your page so why not try something like this:
<li>
<a href="#" @click.prevent="goToDiv"><span>Go To</span></a>
</li>
and in your script:
methods:
goToDiv()
var elmnt = document.getElementById("yourId");
elmnt.scrollIntoView();
,
answered Nov 10 at 5:03
Andrew1325
21328
21328
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53236063%2fvue-router-for-a-div%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown