UNPKG

@kangc/v-md-editor

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