Pinafore-Web-Client-Frontend/src/routes/_components/compose/ComposeLengthGauge.html

17 lines
332 B
HTML
Raw Normal View History

<LengthGauge style="grid-area: gauge; margin: 0 0 5px 5px;"
{length}
{overLimit}
max={$maxStatusChars}
/>
2018-02-27 06:50:03 +01:00
<script>
import LengthGauge from '../LengthGauge.html'
import { store } from '../../_store/store.js'
2018-02-27 06:50:03 +01:00
export default {
components: {
LengthGauge
},
store: () => store
}
</script>