1.2.0 • Published 3 years ago

simulargecomponent v1.2.0

Weekly downloads
178
License
MIT
Repository
-
Last release
3 years ago

Install package

  • npm i simulargecomponent
  • Package Link
  • Stable version: 1.1.9
  • Last version: 1.1.9
<script>
import ColorScale from 'simulargecomponent'

export default {
  components: {
    ColorScale
  }
}
</script>

Usage

<template>
  <div>
    <ColorScale
      :appNumberOfColors="numberOfColors"
      :appPaletteChoice="paletteChoice"
      :appMaxValue="maxValue"
      :appMinValue="minValue"
      :appTitle="TitleOfScale"
      :appHorizontal="horizontal"
      :key="TitleOfScale"
      @focusSceneArea="focusSceneArea"
      @focusMinValue="focusMinValue"
      @focusMaxValue="focusMaxValue"
    />
  </div>
</template>

<script>
export default {
  data() {
    return {
    	numberOfColors: ...,
    	paletteChoice: ...,
    	maxValue: ...,
    	minValue: ...,
    	title: ...,
    	horizontal: ...,
    }
  }
}
</script>
NameTypeRequired
numberOfColorsNumber
paletteChoiceString
maxValueNumber
minValueNumber
titleString
horizontalBoolean
1.2.0

3 years ago

1.1.9

3 years ago

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.5

3 years ago