Files
mini-yu/uni_modules/tdesign-uniapp/components/action-sheet/index.js

14 lines
244 B
JavaScript
Raw Normal View History

2026-02-10 08:05:03 +08:00
import { show, close, ActionSheetTheme, actionSheetTheme } from './show';
export { ActionSheetTheme, actionSheetTheme };
export default {
show(options) {
return show(options);
},
close(options) {
return close(options);
},
};