UNPKG

v-md-editor

Version:

A markdown editor built on Vue

11 lines (9 loc) 245 B
import { undo } from '@/utils/constants/command'; export default { name: undo, icon: 'v-md-icon-undo', title: (editor) => `${editor.langConfig.undo.toolbar}(Ctrl+Z)`, action(editor) { editor.execCommand(undo); }, };