UNPKG

v-md-editor

Version:

A markdown editor built on Vue

11 lines (9 loc) 273 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); }, };