Detailed explanation of Vue development Sort component code

Detailed explanation of Vue development Sort component code
<template>
	<ul class="container">
		<li v-for="(item,index) in datalist" :key="index">
			{{item.text}}<span></span>
		</li>
	</ul>
</template>
<script>
	export default{
		props:{},
		data(){
			return {
				datalist:[
					{
						id:1,
						text:'Shandong'
					},
					{
						id:2,
						text:'Beijing'
					},
					{
						id:3,
						text:'Shaanxi'
					},
					{
						id:4,
						text:'Chongqing'
					}
				]
			}
		},
		components:{},
		methods:{},
		mounted(){},
		created(){},
		watch:{}
	}
</script>
<style scoped lang="scss">
	.container{
		display: flex;
		li{
			position: relative;
			width: 40px;
			height: 20px;
			font-size: 14px;
			font-weight: 300;
			text-align: center;
			line-height: 20px;
			span{
				display: inline-block;
				position: absolute;
				width: 1px;
				height: 50%;
				right: 0;
				top: 50%;
				transform: translateY(-50%);
				background-color: #EEEEEE;
			}
			&:last-child{ //Note here, the method to eliminate the last gray line span{
					width: 0;
				}
			}
		}
	}
</style>

You may also be interested in:
  • Detailed explanation of the use of router-view components in Vue
  • Detailed explanation of how to use Teleport, a built-in component of Vue3
  • A brief discussion on VUE uni-app custom components
  • A brief introduction to VUE uni-app basic components
  • A detailed discussion of components in Vue

<<:  Docker renames the image name and TAG operation

>>:  A brief analysis of SQL examples for finding uncommitted transactions in MySQL

Recommend

MYSQL subquery and nested query optimization example analysis

Check the top 100 highest scores in game history ...

MySQL online deadlock analysis practice

Preface I believe that everyone has had a simple ...

JavaScript to achieve calendar effect

This article shares the specific code for JavaScr...

JavaScript gets the scroll bar position and slides the page to the anchor point

Preface This article records a problem I encounte...

Nginx reverse proxy learning example tutorial

Table of contents 1. Reverse proxy preparation 1....

Use of MySQL DATE_FORMAT function

Suppose Taobao encourages people to shop during D...

Detailed explanation of the principle of Docker image layering

Base image The base image has two meanings: Does ...

Example code for drawing double arrows in CSS common styles

1. Multiple calls to single arrow Once a single a...

Table paging function implemented by Vue2.0+ElementUI+PageHelper

Preface I have been working on some front-end pro...

Detailed explanation of vue keepAlive cache clearing problem case

Keepalive is often used for caching in Vue projec...

JavaScript function detailed introduction

Any number of statements can be encapsulated thro...

How to filter out certain libraries during mysql full backup

Use the --all-database parameter when performing ...

Complete steps to build NFS file sharing storage service in CentOS 7

Preface NFS (Network File System) means network f...

Summary of the differences between global objects in nodejs and browsers

In Node.js, a .js file is a complete scope (modul...

WiFi Development | Introduction to WiFi Wireless Technology

Table of contents Introduction to WiFi Wireless T...