UNPKG

v-md-editor

Version:

A markdown editor built on Vue

16 lines (14 loc) 335 B
import { wrap } from '@/utils/constants/command'; export default { name: wrap, icon: 'v-md-icon2-md-return-left', title: '插入换行', action(editor) { editor.insert((selected) => { const content = selected? selected + '<br/>':'<br/>'; return { text: content, }; }); }, };