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,
},









share|improve this question




























    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,
    },









    share|improve this question


























      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,
      },









      share|improve this question















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 16 hours ago

























      asked 17 hours ago









      Yerlan Yeszhanov

      761111




      761111
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          2
          down vote














          1. Define a name in vue router like { path: '/worklist/:id', name: 'worklist'}

          2. Now access the name using $route.name !== 'worklist'






          share|improve this answer























          • 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











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          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

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          2
          down vote














          1. Define a name in vue router like { path: '/worklist/:id', name: 'worklist'}

          2. Now access the name using $route.name !== 'worklist'






          share|improve this answer























          • 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















          up vote
          2
          down vote














          1. Define a name in vue router like { path: '/worklist/:id', name: 'worklist'}

          2. Now access the name using $route.name !== 'worklist'






          share|improve this answer























          • 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













          up vote
          2
          down vote










          up vote
          2
          down vote










          1. Define a name in vue router like { path: '/worklist/:id', name: 'worklist'}

          2. Now access the name using $route.name !== 'worklist'






          share|improve this answer















          1. Define a name in vue router like { path: '/worklist/:id', name: 'worklist'}

          2. Now access the name using $route.name !== 'worklist'







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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


















          • 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


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Cypress Hill

          what are some tips for doing well in the interview? [on hold]

          How does a super-power salesman not get shut down for legal reasons?