UNPKG

@kangc/v-md-editor

Version:
11 lines (9 loc) 263 B
import { strikethrough } from '@/utils/constants/command'; export default { name: strikethrough, icon: 'v-md-icon-strikethrough', title: (editor) => editor.langConfig.strikethrough.toolbar, action(editor) { editor.execCommand(strikethrough); }, };