How to hide div when user goes to the page with dynamic route?
up vote
0
down vote
favorite
I need to hide div when user goes to the page with dynamic route . How to detect that user on dynamic route?
aside.swiper-side_left(v-show = `[$route.path !== "/worklist/:id"]`)
router
{
path: "/worklist/:id",
name: "worklistDynamic",
component: worklistDynamic,
},
vue.js vue-router
add a comment |
up vote
0
down vote
favorite
I need to hide div when user goes to the page with dynamic route . How to detect that user on dynamic route?
aside.swiper-side_left(v-show = `[$route.path !== "/worklist/:id"]`)
router
{
path: "/worklist/:id",
name: "worklistDynamic",
component: worklistDynamic,
},
vue.js vue-router
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to hide div when user goes to the page with dynamic route . How to detect that user on dynamic route?
aside.swiper-side_left(v-show = `[$route.path !== "/worklist/:id"]`)
router
{
path: "/worklist/:id",
name: "worklistDynamic",
component: worklistDynamic,
},
vue.js vue-router
I need to hide div when user goes to the page with dynamic route . How to detect that user on dynamic route?
aside.swiper-side_left(v-show = `[$route.path !== "/worklist/:id"]`)
router
{
path: "/worklist/:id",
name: "worklistDynamic",
component: worklistDynamic,
},
vue.js vue-router
vue.js vue-router
edited Nov 19 at 9:03
asked Nov 19 at 8:38
Yerlan Yeszhanov
731112
731112
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
- Define a name in vue router like
{ path: '/worklist/:id', name: 'worklist'}
- Now access the name using
$route.name !== 'worklist'
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
Nov 19 at 9:05
Made the changes
– Raja Sekar
Nov 19 at 9:40
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
- Define a name in vue router like
{ path: '/worklist/:id', name: 'worklist'}
- Now access the name using
$route.name !== 'worklist'
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
Nov 19 at 9:05
Made the changes
– Raja Sekar
Nov 19 at 9:40
add a comment |
up vote
2
down vote
- Define a name in vue router like
{ path: '/worklist/:id', name: 'worklist'}
- Now access the name using
$route.name !== 'worklist'
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
Nov 19 at 9:05
Made the changes
– Raja Sekar
Nov 19 at 9:40
add a comment |
up vote
2
down vote
up vote
2
down vote
- Define a name in vue router like
{ path: '/worklist/:id', name: 'worklist'}
- Now access the name using
$route.name !== 'worklist'
- Define a name in vue router like
{ path: '/worklist/:id', name: 'worklist'}
- Now access the name using
$route.name !== 'worklist'
edited Nov 19 at 9:39
answered Nov 19 at 8:49
Raja Sekar
1,475620
1,475620
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
Nov 19 at 9:05
Made the changes
– Raja Sekar
Nov 19 at 9:40
add a comment |
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
Nov 19 at 9:05
Made the changes
– Raja Sekar
Nov 19 at 9:40
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
Nov 19 at 9:05
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
Nov 19 at 9:05
Made the changes
– Raja Sekar
Nov 19 at 9:40
Made the changes
– Raja Sekar
Nov 19 at 9:40
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%2f53370957%2fhow-to-hide-div-when-user-goes-to-the-page-with-dynamic-route%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