Skip to content

Latest commit

 

History

History
65 lines (57 loc) · 1.24 KB

README.md

File metadata and controls

65 lines (57 loc) · 1.24 KB

vue-text-dot

A vue component for clipping text.

Installation

npm install vue-text-dot --save

and in your component:

import dot from 'vue-text-dot'

Usage

<dot :msg="someText" @isDot="methods when is Doted"></dot>

Props

Name Type Required Default Description
msg String true text in dot
line Number false 1 the number of rows that you want to show

Tips

You'd better set the class for component including 'line-height'

Demo

Logo

<template>
  <div>
    <dot v-if="dot" :msg="desc" :line="2" class="desc" @isDot="isDot"></dot>
    <p v-if="!dot" class="desc">{{pinfo.desc}}</p>
    <span v-if="moreText && dot" @click="dot = !dot" class="show-more">show more</span>
    <span v-if="!dot" @click="dot = !dot" class="show-more">hide</span>
  </div>
</template>
import dot from 'vue-text-dot'
...
 {
   ...
   components: { dot, ... },
   data () {
     return {
       desc: '.....text....'
       moreText: false,
       dot: true
     }
   },
   methods: {
     // $emit
     isDot () {
       this.moreText = true
     }
   }
 }
...