index.js 246 B

12345678910111213
  1. import ad from '../index/ad'
  2. ad({
  3. onContact(e) {
  4. console.log('onContact', e)
  5. },
  6. onGotUserInfo(e) {
  7. console.log('onGotUserInfo', e)
  8. },
  9. onGotPhoneNumber(e) {
  10. console.log('onGotPhoneNumber', e)
  11. },
  12. })