header.js 404 B

123456789101112131415161718192021
  1. // components/header/header.js
  2. Component({
  3. properties: {
  4. // header嵌入的位置,index:首页
  5. position:{
  6. type:String,
  7. value:''
  8. }
  9. },
  10. data: {
  11. index:0
  12. },
  13. methods: {
  14. backHome(){
  15. wx.navigateBack(-1);
  16. },
  17. },
  18. ready: function(){
  19. console.log(this.data.position);
  20. }
  21. })