The method to center the text in vue.js: first take the css part and encapsulate it into a Vue component and instantiate it; then bind dynamic data to the component; finally receive the data and bind the data to in content.
【Recommended related articles: vue.js】
vue.js中来Method to center text:
First we take down the css part
css:
.word-v-middle{ margin-bottom: 0; font-size: 12px; min-height: 31px; display: flex; align-items: center; justify-content: center; height: 31px; margin-top: 5px; color: #87878a; white-space: normal; } .word-v-middle span{ text-align: left; font-size: 10px; text-overflow: -o-ellipsis-lastline; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
The top part is the core css of the component, which is to center the text up and down css, then we first encapsulate it into a Vue component
html part
<p class="word-v-middle"><span>文字内容</span></p>
We first register this part as a component, here we use the local registration method of the component
var wordMiddle = { template:'<p class="word-v-middle"><span>文字内容</span></p>', };
After instantiation
html:
<div id="exp"> <word-v-middle></word-v-middle> </div>
js:
new Vue({ el:"#exp", components:{ 'word-v-middle':wordMiddle } });
In this way, even if the first step is completed, the rendering is as follows
The second step is to bind dynamic data to the component. We first add a props method when the component is registered so that the component can accept data, and then use the data method to add data to the component
var wordMiddle = { template:'<p class="word-v-middle"><span>{{msg}}</span></p>', props:['data'], data:function(){ return { msg:this.data }; } };
In this way, our component can receive data and bind the data to the content. The code during instantiation must also be changed accordingly
html part
<div id="exp"> <word-v-middle :data='aaa' ></word-v-middle> </div>
js part
new Vue({ el:"#exp", data:{ aaa:'hello', }, components:{ 'word-v-middle':wordMiddle } })
The single dynamic data component is now complete, but this alignment method is generally used in projects with multi-column block structures, so we write another multi-column example and use loop binding Defining multiple data
css part
#example2{ width: 100%; overflow: hidden; } #example2 div{ float: left; width: 25%; }
html part
<div id="example2"> <div v-for='aaa in sites'> <word-v-middle :data='aaa' ></word-v-middle> </div> </div>
js part
new Vue({ el:"#example2", data:{ sites:[ "洗发水洗发水洗发水", "洗发水洗发水", "洗发水洗发水洗发水洗发水洗发水", "洗发水洗发水", ] }, components:{ 'word-v-middle':wordMiddle } })
The effect is as shown above. In the above code, the css part is for The code is four columns in parallel. The v-for method is used in HTML to loop data. Within the component, the data output by the loop is received through: data='aaa', and the source of the data is the sites named sites in the data in the instantiation of the parent element. array. In actual projects, the binding of background data can be achieved by replacing the data in sites with the array output by the background.
Related free learning recommendations: javascript (video)
The above is the detailed content of How to center text in vue.js. For more information, please follow other related articles on the PHP Chinese website!

VueUse 是 Anthony Fu 的一个开源项目,它为 Vue 开发人员提供了大量适用于 Vue 2 和 Vue 3 的基本 Composition API 实用程序函数。本篇文章就来给大家分享几个我常用的几个 VueUse 最佳组合,希望对大家有所帮助!

Vue3如何更好地使用qrcodejs生成二维码并添加文字描述?下面本篇文章给大家介绍一下Vue3+qrcodejs生成二维码并添加文字描述,希望对大家有所帮助。

本篇文章给大家整理分享8个GitHub上很棒的的 Vue 项目,都是非常棒的项目,希望当中有您想要收藏的那一个。

如何使用VueRouter4.x?下面本篇文章就来给大家分享快速上手教程,介绍一下10分钟快速上手VueRouter4.x的方法,希望对大家有所帮助!

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
