2019-08-25 06:23:43 +02:00
|
|
|
<LengthGauge style="grid-area: gauge; margin: 0 0 5px 5px;"
|
|
|
|
{length}
|
|
|
|
{overLimit}
|
|
|
|
max={$maxStatusChars}
|
|
|
|
/>
|
2018-02-27 06:50:03 +01:00
|
|
|
<script>
|
2019-08-25 06:23:43 +02:00
|
|
|
import LengthGauge from '../LengthGauge.html'
|
2021-07-05 05:19:04 +02:00
|
|
|
import { store } from '../../_store/store.js'
|
2018-02-27 06:50:03 +01:00
|
|
|
|
|
|
|
export default {
|
2019-08-25 06:23:43 +02:00
|
|
|
components: {
|
|
|
|
LengthGauge
|
2018-04-30 17:29:04 +02:00
|
|
|
},
|
2019-08-25 06:23:43 +02:00
|
|
|
store: () => store
|
2018-04-30 07:13:41 +02:00
|
|
|
}
|
2019-08-25 06:23:43 +02:00
|
|
|
</script>
|