How to implement vue routing nesting routing, similar to this one

Mar.04,2021

upstairs
just use v-if to judge, similar to:

    <div class="verification-container">
      <div v-if="verifyType==='mobile'">
        ...
      </div>
      <div v-if="verifyType==='email'">
        ...
      </div>
    </div>

you don't even need routing. You can write this code in a vue, and it becomes troublesome to implement it after you use routing.

Menu