[Vuejs]-The component template do not shows up, it render to the `<!—->`

0👍

You forgot to bind the to in your router link. So bind it:

<router-link class="forget-pwd" type="text" :to="forgetPwdPath" @click.native="closeModal" >忘记密码?</router-link>

Or

<router-link class="forget-pwd" type="text" v-bind:to="forgetPwdPath" @click.native="closeModal" >忘记密码?</router-link>

Leave a comment