UNPKG
v-md-editor
Version:
latest (1.0.6)
1.0.6
A markdown editor built on Vue
v-md-editor
/
src
/
toolbar
/
strikethrough.js
11 lines
(9 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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); }, };