59d26f1a09
* feat: add length gauge for media alt text editor * fix test
17 lines
329 B
HTML
17 lines
329 B
HTML
<LengthGauge style="grid-area: gauge; margin: 0 0 5px 5px;"
|
|
{length}
|
|
{overLimit}
|
|
max={$maxStatusChars}
|
|
/>
|
|
<script>
|
|
import LengthGauge from '../LengthGauge.html'
|
|
import { store } from '../../_store/store'
|
|
|
|
export default {
|
|
components: {
|
|
LengthGauge
|
|
},
|
|
store: () => store
|
|
}
|
|
</script>
|