mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-28 21:20:28 +00:00
17 lines
312 B
TypeScript
17 lines
312 B
TypeScript
import Pane from './views/pane';
|
|
import { IconOutline } from './icons/outline';
|
|
import { intl } from './locale';
|
|
|
|
export default {
|
|
name: 'outline-pane',
|
|
props: {
|
|
icon: IconOutline,
|
|
description: intl('Outline Tree'),
|
|
},
|
|
content: Pane,
|
|
};
|
|
|
|
export { getTreeMaster } from './main';
|
|
|
|
export { Pane };
|