1.0.1 • Published 3 years ago

show-more-text v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

show-more-text ( for vue.js)

Version License Downloads

Vue multiline sentence ellipsis component. The text in the component will be truncated.

エビフライトライアングル

Installation

NPM

$ npm install show-more-text --save

Run demo

$ git clone https://github.com/limlt/show-more-text-demo
$ cd show-more-text-demo
$ npm install
$ npm run dev
$ open http://localhost:8080 in browser

ShowMoreText Component Attributes

ParameterDescriptionTypeDefaultRequired
textThe string data that need to add ellipsisString-true
more-textThe anchor text that show moreStringShow lessfalse
less-textThe anchor text that show lessStringShow morefalse
linesNumber of lines to displayNumber3false
has-moreFlag that show anchorBooleantruefalse
additional-container-cssAddtional css for containerString-false
additional-content-cssAddtional css for contentString-false
additional-content-expanded-cssAddtional css for content when expandedString-false
additional-anchor-cssAddtional css for anchorString-false
clickAnchor click callback functionFunction-false

How To Use

<template>
  <v-layout column justify-center align-center>
    <v-flex xs12 sm8 md6>
      <v-card>
        <v-card-text>
          <show-more-text
            :text="txtString"
            :lines="4"
            additional-container-css="margin:14px;"
            additional-content-css="font-size:16px;"
            additional-content-expanded-css="font-size:16px;"
            additional-anchor-css="font-size: 16px;"
            @click="change"
          />
        </v-card-text>
      </v-card>
    </v-flex>
  </v-layout>
</template>

<script>
import showMoreText from 'show-more-text'
export default {
  components: {
    showMoreText,
  },
  data() {
    return {
      txtString: `Note: This property was originally implemented in WebKit and has some issues. It got standardized for legacy support. The CSS Overflow Module Level 3 specification also defines a line-clamp property, which is meant to replace this property and avoid its issues.`,
    }
  },
  methods: {
    change(showAll) {
      console.log(showAll)
    },
  },
}
</script>

License

MIT