zview-mobile-editor
Version:
A WYSIWYG text editor base on html5 and vue
11 lines • 402 B
HTML
<div>
<button type="button" @click="$parent.execCommand('justifyLeft')">
{{$parent.locale["left justify"]}}
</button>
<button type="button" @click="$parent.execCommand('justifyCenter')">
{{$parent.locale["center justify"]}}
</button>
<button type="button" @click="$parent.execCommand('justifyRight')">
{{$parent.locale["right justify"]}}
</button>
</div>