Home > Web Front-end > JS Tutorial > body text

How to develop tree components using Vue

亚连
Release: 2018-06-19 14:31:22
Original
1590 people have browsed it

This article mainly introduces the sample code for developing Vue tree components, which shows the recursive use of components. Now I share it with you and give it as a reference.

This article introduces the sample code of the Vue tree component and shares it with everyone. The details are as follows:

Use SemanticUI and vue to make a menubar component. The implementation method is roughly as follows:

Copy after login

When using, if the parent component app uses the menubar component, then the items data needs to be defined in the data. For example:

menubar:[ 
     {id:"a",text:"主页1",icon:"home",tips:"提示",label:"33",labelColor:"red",url:"#"}, 
     {id:"b",text:"菜单",icon:"edit",tips:"提示",url:"#",children:[ 
       {id:"a",text:"菜单1",click:"test3",icon:"home",url:"#"}, 
       {id:"a",text:"菜单2",click:"test3",icon:"home",url:"#"} 
     ]}, 
     {id:"bb",text:"编辑",tab:"a",icon:"user",vlink:"#"}, 
     {id:"bb",text:"文件",tab:"b",icon:"user",click:"test1"}, 
     {id:"bb",text:"帮助",tab:"c",icon:"help",click:"test2"}, 
     {id:"bb",text:"工具",icon:"user",url:"www.baidu.com"}, 
     {id:"c",text:"设置",icon:"home",tips:"提示",enabled:true,color:"blue",url:"#",right:true,label:"",children:[ 
        {id:"bbb",text:"配置",icon:"home",tips:"提示",click:"test3"}, 
        {id:"adsd",text:"退出",icon:"home",tips:"提示",vlink:"/workdesk",url:"#"} 
        ] 
      } 
   ]
Copy after login

The click event in

events:{ 
  eventa:function(){....}, 
  eventb:function(){....}, 
}
Copy after login

is defined when the toolbar is clicked. Events, ideally should be defined in the events of the parent component app, like this:

The toolbar component is generated based on the incoming items, including the child components inside. The structure of the final toolbar component is a tree structure, for example:

MenuBar
--MenuBar                                                                                            --Menubar

Since each Menubar in each toolbar component has its own context, when the click event of the sub-component Menubar is triggered, the event defined in the top-level app component events will not be called. Instead, it just calls the events of the parent Menubar.

But in terms of user experience, it is obvious that the click event definition of the toolbar component should be defined in the events of the app component. We hope that when menubar:[] defines a menu item, no matter how many levels of nesting it is, the triggering of the event can bubble up to the parent of the top menubar.

Therefore, to implement this mechanism, the communication mechanism between components is currently used:

methods:{ 
  onMenuItemClick:function(item,$event){    
   if(this.subMenu){ 
    this.$dispatch("menuItemClick",item,$event)  
   }else{ 
    if(item.click){ 
     this.$parent.$emit(item.click,item) 
    } 
   }   
  } 
 }
Copy after login

The above defines an event @click="onMenuItemClick(item,$event)"

events:{ 
  menuItemClick:function(item,$event){ 
   if(!this.subMenu){ 
    this.$parent.$emit(item.click,item) 
   }else{ 
    return true 
   } 
  } 
 },
Copy after login

When onMenuItemClick is triggered, we confirm how the click event is processed based on the incoming subMenu. If the Menubar is processed as a submenu bar, we will directly bubble the event upward, otherwise the event will be triggered in the upper parent component.

Copy code The code is as follows:

When calling inside the menubar component, pass in submenu=true, and listen for the event menuItemClick. The menuItemClick event code is as follows:

 
  
 
Copy after login

To summarize:

When dealing with components with nested structures, such as toolbars with drop-down menus, tree components, etc., since each component has its own independent context, it must Use the component communication mechanism to handle communication between internal components.

But I think this way of handling it is still troublesome. Ideally, I think the best official way can provide a mechanism for the component to directly use the context of the parent component, for example:

rrreee

In this way, the button above does not have its own context, but can directly introduce the context of the parent component. This pattern should be used in many situations.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

Tutorial on the installation and use of CLI in Angular4

How to implement JSON tree using Vue2.x

vue-cli configuration file (detailed tutorial)

Use jQuery to encapsulate animate.css (detailed tutorial)

How to reset the idle state in vuex

The above is the detailed content of How to develop tree components using Vue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!