20 lines
357 B
JavaScript
20 lines
357 B
JavaScript
|
export default {
|
||
|
name: 'Arrows',
|
||
|
langList: [
|
||
|
{id: 'arrow_none', textContent: 'No arrow'}
|
||
|
],
|
||
|
contextTools: [
|
||
|
{
|
||
|
title: 'Select arrow type',
|
||
|
options: {
|
||
|
none: 'No arrow',
|
||
|
end: '---->',
|
||
|
start: '<----',
|
||
|
both: '<--->',
|
||
|
mid: '-->--',
|
||
|
mid_bk: '--<--'
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|