Vue实现tab选项卡

匿名 (未验证) 提交于 2019-12-02 21:53:52
<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>Tabs</title>     <style>        .active{             background: #f00;        }     </style>     <script src="https://unpkg.com/vue/dist/vue.js"></script> </head> <body> <div id="app">     <ul>                 <li @click="toggle(index ,tab.view)" v-for="(tab,index) in tabs" :class="{active:active===index}">               {{tab.type}}                 </li>         </ul>       <component :is="currentView"></component> </div>  </body> </html> <script>     Vue.component('child1', {          template: "<p>this is child1</p>"     })     Vue.component('child2', {          template: "<p>this is child2</p>"     })     new Vue({          el: "#app",          data: {                active: 0,              currentView: 'child1',                tabs: [                    {                            type: 'tab1',                        view: 'child1'                   },                      {                            type: 'tab2',                         view: 'child2'                     }               ]           },          methods: {               toggle(i, v){                     this.active = i                    this.currentView = v               }          }     }) </script>

文章来源: Vue实现tab选项卡
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!