命名视图
Posted bao2333
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了命名视图相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div id="app"> <nav> <router-link to="/">邮箱设置</router-link> <router-link to="/page">个人信息设置</router-link> </nav> <router-view></router-view> <router-view name="help"></router-view> </div> <script src="../vue.js"></script> <script src="../vue-router.js"></script> <script> const com1 = { template: ` <div>邮箱设置</div> ` } const com2 = { template: ` <div>个人信息设置</div> ` } const com2Help = { template: ` <div>个人信息设置帮助</div> ` } const router = new VueRouter({ routes: [ { path: ‘/‘, component: com1 }, { path: ‘/page‘, components: { default: com2, help: com2Help } } ] }) const app = new Vue({ el: ‘#app‘, router }) </script> </body> </html>
命名视图将对应的路由组件显示在对应名字的router-view视图中
以上是关于命名视图的主要内容,如果未能解决你的问题,请参考以下文章