schlunsen / vue-fitty

A vue fit text component using fitty

Home Page:https://schlunsen.github.io/vue-fitty/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue Fitty

Fitty text wrapper for Vue

npm (scoped with tag) npm Dependencies js-standard-style

Usage

<template>
    <div>
        <!-- Wrap your component with Fitty -->
        <fitty :options="options">
            <template v-slot:content>
            
              <h1>FITTED TEXT HERE</h1>

            </template>
        </fitty>
    </div>
</template>
import Fitty from 'vue-fitty' 
import MyAwesomeComponent from 'my/aweseome/path'

// Install plugin 
Vue.use(Fitty)

export default {
  data: () => ({
      options: {
        minSize: 11,
        maxSize: 120,
      }
  }),
  components: {
    MyAwesomeComponent
  }
  ...
}

About

A vue fit text component using fitty

https://schlunsen.github.io/vue-fitty/

License:MIT License


Languages

Language:Vue 79.0%Language:JavaScript 21.0%