mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-08-28 00:45:05 +08:00
23 lines
339 B
TypeScript
23 lines
339 B
TypeScript
export default {
|
|
methods: [
|
|
{
|
|
label: '打开蒙层',
|
|
value: 'openOverlay',
|
|
},
|
|
{
|
|
label: '关闭蒙层',
|
|
value: 'closeOverlay',
|
|
},
|
|
],
|
|
events: [
|
|
{
|
|
label: '打开蒙层',
|
|
value: 'overlay:open',
|
|
},
|
|
{
|
|
label: '关闭蒙层',
|
|
value: 'overlay:close',
|
|
},
|
|
],
|
|
};
|