float.js 158 B

12345678910
  1. // components/float-home/float-home.js
  2. Component({
  3. methods: {
  4. goHome() {
  5. wx.switchTab({
  6. url: '/pages/index/index'
  7. });
  8. }
  9. }
  10. });