Implementation code for adding slash to Vue element header

Implementation code for adding slash to Vue element header
<template>
    <div class="app-container">
        <el-table :data="tableData3" style="width: 100%">
            <el-table-column width="120" prop="date"></el-table-column>
            <el-table-column prop="name" label="姓名" width="120"></el-table-column>
            <el-table-column label="Address">
                <el-table-column prop="province" label="省" width="120"></el-table-column>
                <el-table-column prop="city" label="都市" width="120"></el-table-column>
                <el-table-column prop="address" label="Address" width="300"></el-table-column>
                <el-table-column prop="zip" label="Postal Code" width="120"></el-table-column>
            </el-table-column>
        </el-table>
    </div>
</template>

<script>
    export default {
        filters: {},
        data() {
            return {
                tableData3: [{
                    date: '2016-05-03',
                    name: 'Wang Xiaohu',
                    province: 'Shanghai',
                    city: 'Putuo District',
                    address: 'No. 1518, Jinshajiang Road, Putuo District, Shanghai',
                    zip: 200333
                }, {
                    date: '2016-05-02',
                    name: 'Wang Xiaohu',
                    province: 'Shanghai',
                    city: 'Putuo District',
                    address: 'No. 1518, Jinshajiang Road, Putuo District, Shanghai',
                    zip: 200333
                }, {
                    date: '2016-05-04',
                    name: 'Wang Xiaohu',
                    province: 'Shanghai',
                    city: 'Putuo District',
                    address: 'No. 1518, Jinshajiang Road, Putuo District, Shanghai',
                    zip: 200333
                }, {
                    date: '2016-05-01',
                    name: 'Wang Xiaohu',
                    province: 'Shanghai',
                    city: 'Putuo District',
                    address: 'No. 1518, Jinshajiang Road, Putuo District, Shanghai',
                    zip: 200333
                }, {
                    date: '2016-05-08',
                    name: 'Wang Xiaohu',
                    province: 'Shanghai',
                    city: 'Putuo District',
                    address: 'No. 1518, Jinshajiang Road, Putuo District, Shanghai',
                    zip: 200333
                }, {
                    date: '2016-05-06',
                    name: 'Wang Xiaohu',
                    province: 'Shanghai',
                    city: 'Putuo District',
                    address: 'No. 1518, Jinshajiang Road, Putuo District, Shanghai',
                    zip: 200333
                }, {
                    date: '2016-05-07',
                    name: 'Wang Xiaohu',
                    province: 'Shanghai',
                    city: 'Putuo District',
                    address: 'No. 1518, Jinshajiang Road, Putuo District, Shanghai',
                    zip: 200333
                }]
            }
        },
        created() {},
        methods: {}
    }
</script>
<style lang="scss">
    .el-table thead.is-group th {
        background: #fff;
    }
    
    .el-table thead.is-group tr:first-of-type th:first-of-type:before {
        content: 'Date';
        text-align: center;
        position: absolute;
        width: 152px;
        height: 1px;
        bottom: 30px;
        right: 0;
    }
    
    .el-table thead.is-group tr:first-of-type th:first-of-type:after {
        content: 'New delivery';
        text-align: center;
        position: absolute;
        width: 152px;
        top: 10px;
        left: 0;
    }
    
    .el-table thead.is-group tr:first-of-type th:first-of-type .cell {
        position: absolute;
        top: 0;
        left: 0;
        width: 152px;
        height: 1px;
        background-color: #EBEEF5;
        display: block;
        text-align: center;
        transform: rotate(38deg);
        transform-origin: top left;
        -ms-transform:rotate(38deg);
        -ms-transform-origin: top left;
        -webkit-transform: rotate(38deg);
        -webkit-transform-origin: top left;
    }
</style>

Effect:

This is the end of this article about adding slashes to vue element headers. For more related content about adding slashes to vue element headers, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue+Element Custom Vertical Table Header Tutorial
  • Vue+Element ui sets dynamic header operation according to the background return data
  • Dynamic rendering of table in vue element (dynamic table header)
  • Vue implements the header information prompt function in the element table (recommended)
  • Vue+elementui realizes the two-dimensional table function of complex headers and dynamically added columns
  • The vue element-ui table component dynamically generates table headers and data and modifies cell formats for parent-child component communication
  • vue elementUI table custom header and row merge example code

<<:  Perfect solution to Docker Alpine image time zone problem

>>:  Tips for designing photo preview navigation on web pages

Recommend

Linux 6 steps to change the default remote port number of ssh

The default ssh remote port in Linux is 22. Somet...

JavaScript Prototype Details

Table of contents 1. Overview 1.1 What is a proto...

mysql5.5 installation graphic tutorial under win7

MySQL installation is relatively simple, usually ...

How to use the markdown editor component in Vue3

Table of contents Install Importing components Ba...

Steps to create a WEBSERVER using NODE.JS

Table of contents What is nodejs Install NodeJS H...

Use of Vue filters and custom instructions

Table of contents Filters 01.What is 02. How to d...

A QQ chat room based on vue.js

Table of contents Introduction The following is a...

Example analysis of interval calculation of mysql date and time

This article uses an example to describe the inte...

Learn to deploy microservices with docker in ten minutes

Since its release in 2013, Docker has been widely...

MySQL 8.0.11 MacOS 10.13 installation and configuration method graphic tutorial

The process of installing MySQL database and conf...

Native js to implement 2048 game

2048 mini game, for your reference, the specific ...

11 Reasons Why Bootstrap Is So Popular

Preface Bootstrap, the most popular front-end dev...