基于Vue3+TS简单设计一个查看文章时点击展开和点击收起的小功能

简介: 该文章展示了如何使用Vue 3和TypeScript创建一个简单的展开和收起功能,用于文章查看时的交互体验。

前言

这是一个展开和收起的小功能,可用于查看文章时点击展开和点击收起。

一、示例代码

(1)/src/views/Example/ExpandToggle/index.vue

<template>
  <div class="e-w">
    <div class="e-w-main" :class="{ 'e-w-expand': isExpand }" ref="ewRef">

      <div
        style="
          color: rgb(96, 109, 121);
          background-color: #f5ecd7;
          font-family: '楷体';
          padding: 22px;
        "
      >
        <b>什么是Vite,它与Vue CLI有什么区别,Volar又是啥?</b><br />

        <br />

        <b>Vite</b><br />
        Vite 是一个轻量级的、速度极快的构建工具,<br />
        对 Vue SFC 提供第一优先级支持。<br />
        作者是尤雨溪,<br />
        同时也是 Vue 的作者!<br />

        <br />

        <b>Vue CLI</b><br />
        Vue CLI 是官方提供的基于 Webpack 的 Vue 工具链,<br />
        它现在处于维护模式。<br />
        我们建议使用 Vite 开始新的项目,<br />
        除非你依赖特定的 Webpack 的特性。<br />
        在大多数情况下,<br />
        Vite 将提供更优秀的开发体验。<br />

        <br />

        <b>Volar</b><br />
        Volar 是 Vue 的 VS Code 插件,<br />
        也是 Vue 的官方 IDE/TS 支持工具,<br />
        除了集成 Vetur 的相关功能,<br />
        如高亮、语法提示等之外,<br />
        还包含一些独有功能。<br />
        也就是说,Volar 取代了我们之前为 Vue 2 提供的官方 VSCode 扩展 Vetur。如果你之前已经安装了 Vetur,请确保在 Vue 3 的项目中禁用它。<br />
      </div>

      <div class="view-more" v-if="!isExpand">
        <div class="view-more-box" @click="isExpand = !isExpand">
          <el-icon color="#409EFC">
            <ArrowDown />
          </el-icon>
        </div>
      </div>

      <div class="has-more" v-if="isExpand">
        <div class="has-more-box" @click="isExpand = !isExpand">
          <el-icon color="#409EFC">
            <ArrowUp />
          </el-icon>
        </div>
      </div>

    </div>
  </div>
</template>

<script setup lang="ts">
import {
   
    onMounted, ref } from "vue";
import {
   
    ArrowUp, ArrowDown } from "@element-plus/icons-vue";

const ewRef = ref(); // 实例
const isExpand = ref(false); // 是否展开

onMounted(() => {
   
   
  console.log('ewRef =>', ewRef)
  if (ewRef.value) {
   
   
    if (ewRef.value.scrollHeight > ewRef.value.clientHeight) {
   
   
      // ...
    }
  }
});
</script>

<style lang="less" scoped>
  .e-w {
   
   
    width: auto;
    padding: 100px;

    .e-w-main {
   
   
      height: 150px;
      overflow: hidden;
      position: relative;
      border: 1px solid #ddd;

      &.e-w-expand {
   
   
        height: auto;
        overflow: hidden;
      }

      // ---- ---- ---- ---- ^ 展开 样式 ---- ---- ---- ----
      .view-more {
   
   
        width: 100%;
        height: 22px;
        padding-top: 60px;
        background-image: linear-gradient(
          -180deg,
          rgba(255, 255, 255, 0) 0%,
          #ebebebf6 100%
        );
        position: absolute;
        bottom: 0;

        .view-more-box {
   
   
          width: 44px;
          height: 22px;
          background-color: rgba(255, 255, 255, 1);
          border-top-left-radius: 8px;
          border-top-right-radius: 8px;
          position: absolute;
          display: block;
          margin: auto;
          left: 0;
          right: 0;
          bottom: 0;
          cursor: pointer;

          .el-icon {
   
   
            position: absolute;
            display: block;
            margin: auto;
            left: 0;
            right: 0;
            bottom: 0;
          }
        }
      }
      // ---- ---- ---- ---- / 展开 样式 ---- ---- ---- ----

      // ---- ---- ---- ---- ^ 收起 样式 ---- ---- ---- ----
      .has-more {
   
   
        width: 100%;
        height: 22px;
        position: absolute;
        bottom: 0;

        .has-more-box {
   
   
          width: 44px;
          height: 22px;
          background-color: rgba(255, 255, 255, 1);
          border-top-left-radius: 8px;
          border-top-right-radius: 8px;
          position: absolute;
          display: block;
          margin: auto;
          left: 0;
          right: 0;
          bottom: 0;
          cursor: pointer;

          .el-icon {
   
   
            position: absolute;
            display: block;
            margin: auto;
            left: 0;
            right: 0;
            bottom: 0;
          }
        }
      }
      // ---- ---- ---- ---- / 收起 样式 ---- ---- ---- ----
    }
  }
</style>

二、运行效果

目录
相关文章
|
15天前
|
JavaScript 前端开发 开发者
Vue 3中的Proxy
【10月更文挑战第23天】Vue 3中的`Proxy`为响应式系统带来了更强大、更灵活的功能,解决了Vue 2中响应式系统的一些局限性,同时在性能方面也有一定的提升,为开发者提供了更好的开发体验和性能保障。
35 7
|
16天前
|
前端开发 数据库
芋道框架审批流如何实现(Cloud+Vue3)
芋道框架审批流如何实现(Cloud+Vue3)
38 3
|
15天前
|
JavaScript 数据管理 Java
在 Vue 3 中使用 Proxy 实现数据双向绑定的性能如何?
【10月更文挑战第23天】Vue 3中使用Proxy实现数据双向绑定在多个方面都带来了性能的提升,从更高效的响应式追踪、更好的初始化性能、对数组操作的优化到更优的内存管理等,使得Vue 3在处理复杂的应用场景和大量数据时能够更加高效和稳定地运行。
36 1
|
15天前
|
JavaScript 开发者
在 Vue 3 中使用 Proxy 实现数据的双向绑定
【10月更文挑战第23天】Vue 3利用 `Proxy` 实现了数据的双向绑定,无论是使用内置的指令如 `v-model`,还是通过自定义事件或自定义指令,都能够方便地实现数据与视图之间的双向交互,满足不同场景下的开发需求。
36 1
|
5天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
5天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
5天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
5天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
4天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
6天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。