运维小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.js 221B

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. };