{{textLength}}
当前位置:   article > 正文

vue自己封装的文本根据字数来展开(全部显示)收起(保留一定字数以内)的插件_vue实现文字逐个显示

vue实现文字逐个显示

子组件:

Html

<template>
  <div>
    <div class="demo_text">
          {{textLength}}
    </div>
    <div v-show="this.data.length>this.length">
  <div class="show" v-show="fold" @click="expand()">展开</div>
  <div class="show" v-show="!fold" @click="noexpand()">收起</div>
    </div>
  </div>
</template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

Css

<style lang="scss" scoped>
    body{
      /*只显示五行*/
      .demo_text{
        /*强制换行*/
        word-wrap:break-word;
        width: 100%;
      }
      .show{
        font-size: 13px;
        color:cornflowerblue;
      }
    }
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

JS

<script>
    export default {
        name: "text-flow",
      data(){
            return {
              fold : true,
              datas : this.data,
              lengths : this.length,
              reallength : 0
            }
      },
      props:{
          data : {
            type : String,
            default : ''
          },
          length : {
            type : Number,
            default : 0
          },
      },
      computed :{
          textLength: function ()
         {
              if ( this.datas.length>this.lengths) {
                  this.fold == true;
                  return this.datas.trim().substring(0,this.lengths)+"...";
              }else {
                  this.fold == false;
                return  this.datas
              }
          }
      },
      methods:{
          expand(){
            this.reallength = this.lengths;
            this.lengths = this.datas.length;
            this.fold = !this.fold;
          },
        noexpand(){
            this.lengths = this.reallength;
            this.fold = !this.fold;
        },
      }
    }
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46

父组件调用封装好的子组件

需要传的参数:data=》文本内容;length=》规定的字数限制
html

<template>
    <div>
          <Itext :data="data" :length="length"></Itext>
      <Itext :data="data1" :length="length"></Itext>
    </div>
</template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

JS

<script>
    import Itext from './text-flow'
    export default {
        name: "instanceClass",
        data(){
            return {
                data : "HelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorld" +
                  "HelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorld" +
                  "HelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorld" +
                  "HelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorld",
                data1 : "Javascript",
                length : 20,
            }
        },
        components : {
          Itext
        }
    }
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

至此OK,是不是很简单哈哈,效果如下
由于
由于JavaScript没有达到规定字数限制,故没有展开隐藏botton-group
在这里插入图片描述
样式我没做具体处理,到时候根据需求设计即可!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/76837
推荐阅读
相关标签