You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
529 B
14 lines
529 B
import Splitter from './src/splitter2.mjs';
|
|
import SplitPanel from './src/split-panel.mjs';
|
|
export { splitterEmits, splitterProps } from './src/splitter.mjs';
|
|
export { splitterPanelEmits, splitterPanelProps } from './src/split-panel2.mjs';
|
|
import { withInstall, withNoopInstall } from '../../utils/vue/install.mjs';
|
|
|
|
const ElSplitter = withInstall(Splitter, {
|
|
SplitPanel
|
|
});
|
|
const ElSplitterPanel = withNoopInstall(SplitPanel);
|
|
|
|
export { ElSplitter, ElSplitterPanel, ElSplitter as default };
|
|
//# sourceMappingURL=index.mjs.map
|