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 16 hours ago
asked 17 hours ago
Yerlan Yeszhanov
761111
761111
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
16 hours ago
Made the changes
– Raja Sekar
16 hours ago
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
16 hours ago
Made the changes
– Raja Sekar
16 hours ago
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
16 hours ago
Made the changes
– Raja Sekar
16 hours ago
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 16 hours ago
answered 17 hours ago
Raja Sekar
1,428620
1,428620
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
16 hours ago
Made the changes
– Raja Sekar
16 hours ago
add a comment |
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
16 hours ago
Made the changes
– Raja Sekar
16 hours ago
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
16 hours ago
I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"
– Yerlan Yeszhanov
16 hours ago
Made the changes
– Raja Sekar
16 hours ago
Made the changes
– Raja Sekar
16 hours ago
add a comment |
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