## MV Text

### Usage

In your components:
```vue
<template>
    <MTextVertical :data="data" :options="options" />
</template>

<script>
  export default {
    data() {
      return {
        data: [
          {
            id: 1,
            value: 50
          }
        ],
        options: {
          label: 'Standar',
          unit: '%',
          value: 'value',
          filter_by: 'id'
        }
      }
    }
  }
</script>
```
Or you can use the magic component `<DynamicWidget />`, Like on the [main page](./).