vuejs-thermometer

0.1.3 • Public • Published

vuejs-thermometer

Thermometer component for vue.js
v0.1.3

Live demo

Do you have questions or want a new feature? Use the "Issues" section 👈

Setup

Install:

  npm install vuejs-thermometer --save

Import:

import VueThermometer from 'vuejs-thermometer'
Vue.use(VueThermometer)

Usage

Use: (in your local .vue file/component, html section)

    <vue-thermometer
      :value="5"
      :min="-20"
      :max="25"
    />
 
<!-- Options struct: -->
options: {
  text: {
    color: 'black',
    fontSize: 10,
    textAdjustmentY: 2,
    fontFamily: 'Arial',
    textEnabled: true
  },
  thermo: {
    color: '#FF0000',
    backgroundColor: '#fcf9f9',
    frameColor: 'black',
    ticks: 10,
    ticksEnabled: true,
    tickColor: 'black',
    tickWidth: '1'
  },
  layout: {
    height: 300,
    width: 90
  }
}

Properties

Name Type Default Description
value Number 0 Value of temp
min Number -20 Min value
max Number 25 Max value
scale String °C Scale format
options Object Object Object struct
customClass String N/A Custom css class

Package Sidebar

Install

npm i vuejs-thermometer

Weekly Downloads

16

Version

0.1.3

License

MIT

Unpacked Size

1.28 MB

Total Files

17

Last publish

Collaborators

  • larsmars