Skip to content

A vue component for clipping text(vue 2.0) / vue-dotdotdot

Notifications You must be signed in to change notification settings

xmflswood/vue-text-dot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
     }
   }
 }
...

About

A vue component for clipping text(vue 2.0) / vue-dotdotdot

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published