header.js 347 B

12345678910111213141516171819
  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. },
  15. ready: function(){
  16. console.log(this.data.position);
  17. }
  18. })