运维小程序
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.

12345678910
  1. import { show, close, ActionSheetTheme } from './show';
  2. export { ActionSheetTheme };
  3. export default {
  4. show(options) {
  5. return show(options);
  6. },
  7. close(options) {
  8. return close(options);
  9. },
  10. };