2019-08-24 21:23:43 -07:00
|
|
|
<LengthGauge style="grid-area: gauge; margin: 0 0 5px 5px;"
|
|
|
|
{length}
|
|
|
|
{overLimit}
|
|
|
|
max={$maxStatusChars}
|
|
|
|
/>
|
2018-02-26 21:50:03 -08:00
|
|
|
<script>
|
2019-08-24 21:23:43 -07:00
|
|
|
import LengthGauge from '../LengthGauge.html'
|
2018-02-26 22:22:56 -08:00
|
|
|
import { store } from '../../_store/store'
|
2018-02-26 21:50:03 -08:00
|
|
|
|
|
|
|
export default {
|
2019-08-24 21:23:43 -07:00
|
|
|
components: {
|
|
|
|
LengthGauge
|
2018-04-30 08:29:04 -07:00
|
|
|
},
|
2019-08-24 21:23:43 -07:00
|
|
|
store: () => store
|
2018-04-29 22:13:41 -07:00
|
|
|
}
|
2019-08-24 21:23:43 -07:00
|
|
|
</script>
|