JIYIK CN >

Current Location:Home > Learning > WEB FRONT-END > Vue >

How to expand and collapse text in Vue

Author:JIYIK Last Updated:2025/02/27 Views:

With the development of mobile Internet, users have higher and higher requirements for page experience, one of which is the display method of long text. In some mobile applications, in order to avoid the page being too long, it is often necessary to expand and collapse the long text to improve the user experience. This article will introduce how to expand and collapse text in Vue.

1. Demand Analysis

The function we need to implement is: when the user clicks the "Expand" button, the text content is fully displayed; when the user clicks the "Collapse" button, the text content is collapsed again. At the same time, when the text content is long, part of the content needs to be omitted and "..." is displayed so that the user knows that there is more content to expand.

2. Implementation Method

In Vue, we can use the v-if and v-show instructions to expand and collapse text.

  1. v-if

The v-if directive is used to switch the existence of an element based on the truth of the expression. When the value is true, the element exists; when the value is false, the element does not exist. We can control the value of v-if through a variable in data to achieve the effect of expansion and collapse. The sample code is as follows:

<template>
  <div>
    <p v-if="isShow">{{ text }}</p>
    <button v-if="!isShow" @click="toggleShow">展开</button>
    <button v-if="isShow" @click="toggleShow">收起</button>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isShow: false,
      text: '这是一段很长的文本内容,需要进行展开与收起的操作。',
    };
  },
  methods: {
    toggleShow() {
      this.isShow = !this.isShow;
    },
  },
};
</script>
  1. v-show

The v-show directive is used to switch the display and hiding of an element based on the truth of the expression value. When the value is true, the element is displayed; when the value is false, the element is hidden. Unlike v-if, v-show does not destroy and rebuild the element when switching, but achieves it by modifying the display style of the element. We can also control the value of v-show through a variable in data to achieve the effect of expansion and collapse. The sample code is as follows:

<template>
  <div>
    <p v-show="isShow">{{ text }}</p>
    <button v-show="!isShow" @click="toggleShow">展开</button>
    <button v-show="isShow" @click="toggleShow">收起</button>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isShow: false,
      text: '这是一段很长的文本内容,需要进行展开与收起的操作。',
    };
  },
  methods: {
    toggleShow() {
      this.isShow = !this.isShow;
    },
  },
};
</script>

3. Notes

  1. You need to truncate the text and add an ellipsis (…) so that the user knows there is more content to expand. You can use the CSS text-overflow property to achieve this.
  2. The button needs to be styled so that users can clearly know what the button does.
  3. In the implementation process, you need to pay attention to the difference between v-if and v-show. v-if will destroy and rebuild elements when switching, while v-show will not. Therefore, in the case of frequent switching, using v-show can improve performance.
  4. During the implementation process, you need to pay attention to the naming of variables to ensure the readability and maintainability of the code.

In short, it is not difficult to expand and collapse text in Vue. You just need to master the use of the two instructions v-if and v-show, and pay attention to some details. By using these instructions reasonably, we can greatly improve the user experience and make the page more beautiful and easy to use.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Configuring Apache Web Server on Ubuntu and Debian

Publish Date:2025/04/05 Views:176 Category:OPERATING SYSTEM

This article shows you how to install Apache web server on Ubuntu and Debian, set it up, and access the access logs. Apache Web Server in Ubuntu and Debian Apache HTTP Server is a free and open source web server that is very popular. More t

How to use Docker to image a Node.js web application

Publish Date:2025/03/26 Views:107 Category:Docker

Docker is a containerization platform that simplifies the packaging and execution of applications. Containers run as independent processes with their own file systems, but share the kernel of their host machine. Docker has attracted much at

My understanding of webservice is this

Publish Date:2025/03/18 Views:150 Category:NETWORK

Recently, I encountered such a project at work (temporarily named Project A). Project A itself was developed in PHP, but its data came from another project developed in Java (temporarily named Project B). Project A could not operate the dat

Which technology do you choose to implement the web chat room?

Publish Date:2025/03/18 Views:62 Category:NETWORK

With the rise of HTML5 Websockets, web chat applications are becoming more and more popular. Recently, I am working on a mobile web application, the core function of which is to implement web chat on the mobile phone. Of course, the functio

How to redirect a website from HTTP to HTTPS

Publish Date:2025/03/16 Views:117 Category:NETWORK

HTTPS is a protocol for secure communication over computer networks and is widely used on the Internet. More and more website owners are migrating from HTTP to HTTPS, mainly due to the following 5 reasons: Google announced that websites usi

How to avoid soft 404 in the website during SEO

Publish Date:2025/03/17 Views:136 Category:NETWORK

This article shares an SEO problem, soft 404. A status code we often see on websites is 404. Whether we develop a website or not, this is a problem we have to face. What is a soft 404? Before talking about soft 404, we must first understand

Webpack packages ES6 and CommonJs mixed React

Publish Date:2025/03/02 Views:179 Category:React

This article mainly introduces how to use webpack to package and compile React mixed with ES6 and CommonJs. It is a process of upgrading the React environment.

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial