Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
The component failed to render properly, likely due to a configuration issue in Storybook. Here are some common causes and how you can address them:
TooltipFormatter | Array<TooltipFormatter>type TooltipFormatter = string | (val: Value) => string
Default: undefined
Usage:
Format the value of the Tooltip. When the type is string, {value} will be replaced with the value of Tooltip.
<!-- 0% --> <VueSlider v-model="value" :tooltip-formatter="'{value}%'"/> <!-- A/B/C/D --> <VueSlider v-model="value" :data="['a', 'b', 'c', 'd']" :tooltip-formatter="val => val.toUpperCase()" />
| Name | Description | Default | Control |
|---|---|---|---|
| tooltipFormatter | string | - |