| 123456789101112131415161718192021 |
- // components/header/header.js
- Component({
- properties: {
- // header嵌入的位置,index:首页
- position:{
- type:String,
- value:''
- }
- },
- data: {
- index:0
- },
- methods: {
- backHome(){
- wx.navigateBack(-1);
- },
- },
- ready: function(){
- console.log(this.data.position);
- }
- })
|