How to hide div when user goes to the page with dynamic route?












0















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





























    0















    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



























      0












      0








      0








      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 Nov 19 '18 at 9:03







      Yerlan Yeszhanov

















      asked Nov 19 '18 at 8:38









      Yerlan YeszhanovYerlan Yeszhanov

      1551113




      1551113
























          1 Answer
          1






          active

          oldest

          votes


















          2















          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
            Nov 19 '18 at 9:05













          • Made the changes

            – Raja Sekar
            Nov 19 '18 at 9:40











          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',
          autoActivateHeartbeat: false,
          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









          2















          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
            Nov 19 '18 at 9:05













          • Made the changes

            – Raja Sekar
            Nov 19 '18 at 9:40
















          2















          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
            Nov 19 '18 at 9:05













          • Made the changes

            – Raja Sekar
            Nov 19 '18 at 9:40














          2












          2








          2








          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 Nov 19 '18 at 9:39

























          answered Nov 19 '18 at 8:49









          Raja SekarRaja Sekar

          1,520721




          1,520721













          • I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"

            – Yerlan Yeszhanov
            Nov 19 '18 at 9:05













          • Made the changes

            – Raja Sekar
            Nov 19 '18 at 9:40



















          • I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"

            – Yerlan Yeszhanov
            Nov 19 '18 at 9:05













          • Made the changes

            – Raja Sekar
            Nov 19 '18 at 9:40

















          I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"

          – Yerlan Yeszhanov
          Nov 19 '18 at 9:05







          I have already defined router. So It should be like this? v-show = "$route.name !== 'worklistDynamic'"

          – Yerlan Yeszhanov
          Nov 19 '18 at 9:05















          Made the changes

          – Raja Sekar
          Nov 19 '18 at 9:40





          Made the changes

          – Raja Sekar
          Nov 19 '18 at 9:40




















          draft saved

          draft discarded




















































          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.




          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







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini