1234567891011121314151617181920212223242526272829303132333435363738 |
- Component({
-
- properties: {
- booWay: {
- type: Boolean,
- value: false
- },
- start_point: {
- type: Object,
- value: {}
- },
- order_pass_location: {
- type: Array,
- value: []
- },
- end_point: {
- type: Object,
- value: {}
- }
- },
-
- data: {},
- pageLifetimes: {},
-
- methods: {
- hideWay() {
- this.triggerEvent('hideWay')
- }
- }
- })
|