Preface This article introduces the use of vue-router.js routing that comes with vue to implement the paging switching function. Let's take a look at the detailed implementation code. The implementation picture is as follows The following is the implementation code css: *{ margin: 0; padding: 0; } #app ul{ width: 300px; height: 30px; list-style: none; } #app>ul>li{ width: 100px; height: 30px; float: left; } html: <div id="app"> <ul> <li> <router-link to="/dyy">First page</router-link> </li> <li> <router-link to="/dey">Second page</router-link> </li> <li> <router-link to="/dsy">Page 3</router-link> </li> </ul> <router-view></router-view> </div> <template id="DyyDay"> <div> <ul> <li>News 01</li> <li>News 02</li> <li>News 03</li> </ul> </div> </template> <template id="DeyDay"> <div> <ul> <li>message 01</li> <li>message 02</li> <li>message 03</li> </ul> </div> </template> <template id="DsyDay"> <div> <h1>Home</h1> <router-link to="/dsy/home1">home1</router-link> <router-link to="/dsy/home2">home2</router-link> <router-view></router-view> </div> </template> <template id="home1"> <h1>I am home1</h1> </template> <template id="home2"> <h1>I am home2</h1> </template> js. let Dyy={template:`#DyyDay`}; let Dey={template:`#DeyDay`}; let Dsy={template:`#DsyDay`}; let home1={template:`#home1`}; let home2={template:`#home2`}; let router = new VueRouter({ routes:[ { path:'/',redirect:"dyy" }, { path:'/dyy',component:Dyy }, { path:'/dey',component:Dey }, { path:'/dsy',component:Dsy, children:[ {path:'/dsy/home1',component:home1}, {path:'/dsy/home2',component:home2} ] }] }); let app = new Vue({ router }).$mount('#app') Summarize This is the end of this article about Vue's implementation of the tab routing switching component. For more related Vue tab routing switching component content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to notify users of crontab execution results by email
>>: Detailed explanation of how to view the number of MySQL server threads
When installing in MySQL 8.0.16, some errors may ...
For example, when you create a new table or updat...
Table of contents nonsense Functions implemented ...
Congratulations on finally convincing your bosses...
1. Oracle is a large database while MySQL is a sm...
See: https://www.jb51.net/article/112612.htm Chec...
As shown in the figure: Check port usage: sudo ne...
docker attach command docker attach [options] 容器w...
The MySQL server is running with the --skip-grant...
This article uses examples to describe the introd...
Preface Recently I found that my friend's met...
Install jdk: Oracle official download https://www...
The cut command in Linux and Unix is used to cu...
Table of contents Preface Introduction JavaScript...
1. Install Fcitx input framework Related dependen...