123456789101112131415161718192021 |
- Component({
- properties: {
- myProperty: {
- type: String,
- value: '',
- observer: function () { }
- },
- },
- data: {
- disabled: true,
- isshow: false,
- },
- methods: {
- goToSearch() {
- wx.navigateTo({
- url: '/pages/search/search',
- })
- }
- },
- });
|