Package Exports
- vue-responsive-text
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-responsive-text) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-responsive-text

Vue component that scales its child node in relation to its parent node's width
Installation
Install the package from npm by running
$ npm i --save vue-responsive-textor
$ yarn add vue-responsive-textUsage
Import the component as you would any other and place responsive text as the component's child.
<template>
<VueResponsiveText>
this text will scale
</VueResponsiveText>
</template>
<script>
import VueResponsiveText from 'vue-responsive-text'
export default {
...
components: {
VueResponsiveText
}
};
</script>Props
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
| transition | number | false | 0 | Transition duration in ms |
Inspiration
This component was inspired by by @foisonocean's 'react-dynamic-font'.
Contributing
This project is open to and encourages contributions! Feel free to discuss any bug fixes/features in the issues. If you wish to work on this project:
- Fork the project
- Create your feature branch (
git checkout -b new-feature-branch) - Commit your changes (
git commit -am 'add new feature') - Push to the branch (
git push origin new-feature-branch) - Submit a pull request!