美文网首页
vue3 路由 页面跳转方式

vue3 路由 页面跳转方式

作者: 江火渔枫 | 来源:发表于2022-10-13 16:18 被阅读0次

    方式一:标签方式

    <router-link :class=" mt=='会前'?'active':''" to="/before" @click="qidai('/zt/cpchome/#/before','会前')">
              会前版<br>
              <span class="m-t">10.15</span>
            </router-link>
    

    方式二:js方式

    <script lang='ts' setup>
    
    const router = useRouter();
    router.push("after");
    
    </script>
    

    相关文章

      网友评论

          本文标题:vue3 路由 页面跳转方式

          本文链接:https://www.haomeiwen.com/subject/ygpfzrtx.html