Vue implements tree table through element tree control

Vue implements tree table through element tree control

In Vue, use the element tree control to achieve the effect of tree table

Use indentation to achieve a tree-like effect

Implementation effect diagram

Rendering

Install Dependencies

$ npm install element-plus --save

Element official website

Custom tree controls

Rendering

Analyze the distribution of controls in the diagram. Each parameter has a fixed width . width is used to align the values.

The code mainly uses the renderContent function to customize the tree control

<template>
    <div class="mytree">
          <el-tree
              :data="tree_data"
              :props="defaultProps"
              @node-click="handleNodeClick"
              indent="0"
              :render-content="renderContent"
          ></el-tree>
        </div>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue'
export default defineComponent({
    components: {},
    data() {
        return {
              tree_data: [
        {
          // type:1,
          label: 'notice-id1',
                  children: [
                        {
                          label: ['Satellite name code', 'ZOHREH-2'],
                        },
                        {
                          label: ['Organization', 'IRN'],
                        },
                        {
                          label: ['Frequency range', '10950-1450'],
                        },
                        {
                          label: '[upper row] beam name',
                          children: [
                              {
                                  label:['name','RS49'],
                              },
                             {
                                  label:['freq_min','10950'],
                              },
                             {
                                  label:['freq_max','14500'],
                              },
                              {
                                  label:[]'group('+'3'+')','']
                                  children:[
                                     {
                                        label:['10600361','10950','11200','0']
                                     },
                                    {
                                        label:['10600361','10950','11200','0']
                                     },
                                    {
                                        label:['10600361','10950','11200','0']
                                     }
                                  ]
                              }
                      ]
                    },
                  ],
                },
              ],
            defaultProps: {
            children: 'children',
            label: 'label',
          },
        }
    },
    method:{
    // Custom tree control function node represents each node renderContent(h,{node,data,store}){
        //div represents a row of the tree control, and div contains three span tags // Determine the number of label arrays of the node and select the class through ternary operation
        // Set the class to control the alignment of the tree control return h('div',[
          h('span', {class:node.label.length === 2 ? 'nodeStyle':'groupStyle'},node.label[0]),
          h('span', {class:'groupStyle'},node.label[1]),
          h('span',{class:node.label.length === 2 ? 'nodeStyle':'groupStyle'},node.label.length === 2 ? '':node.label[2])
          ]);
    },
    }
})
</script>
<style lang="scss" scoped>
.nodeStyle{
  width:110px;
  display:inline-block;
  text-align:left;
}
.groupStyle{
  width:150px;
  display:inline-block;
  text-align:left;
}
</style>

Other Implementations

Add a dotted line to the element tree control

Element-ui implements adding icons to tree control nodes

Summarize

The tree table is mainly implemented by combining the custom function renderContent of the element's tree control with CSS

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of adding dotted lines to Vue element tree controls
  • Vue Element-ui table realizes tree structure table
  • Vue component library ElementUI implements table loading tree data tutorial
  • Vue+element UI realizes tree table
  • Vue+Element UI tree control integrates drop-down function menu (tree + dropdown +input)
  • Vue Element-ui implements tree control node adding icon detailed explanation

<<:  Display and hide HTML elements through display or visibility

>>:  Solution to CSS anchor positioning being blocked by the top fixed navigation bar

Recommend

Design Association: Why did you look in the wrong place?

I took the bus to work a few days ago. Based on m...

Simple example of adding and removing HTML nodes

<br />Simple example of adding and removing ...

Summary of MySQL time statistics methods

When doing database statistics, you often need to...

VUE implements token login verification

This article example shares the specific code of ...

Introduction to setting up Tomcat to start automatically on Linux system

1. Enter the /etc/init.d directory: cd /etc/init....

CSS style solves the problem of displaying ellipsis when the text is too long

1. CSS style solves the problem of displaying ell...

In-depth understanding of MySQL long transactions

Preface: This article mainly introduces the conte...

How to configure anti-hotlinking for nginx website service (recommended)

1. Principle of Hotlinking 1.1 Web page preparati...

Detailed description of the function of new in JS

Table of contents 1. Example 2. Create 100 soldie...

HTML table tag tutorial (46): table footer tag

The <tfoot> tag is used to define the style...

Example of making XML online editor using js

Table of contents Preface The need for online XML...

MySQL database Shell import_table data import

Table of contents MySQL Shell import_table data i...