运维小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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