app.js 268 B

12345678910111213141516
  1. // app.js
  2. App({
  3. onLaunch() {
  4. // 展示本地存储能力
  5. const logs = wx.getStorageSync('logs') || []
  6. logs.unshift(Date.now())
  7. wx.setStorageSync('logs', logs)
  8. console.log('app start')
  9. },
  10. globalData: {
  11. userInfo: null,
  12. follow:0
  13. }
  14. })