合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
### vue混入 ``` /*主要用于混入种植信息的tab组件数据处理*/ export const tabFilterOption = { data: function () { return { /*列表数据*/ listData: null } }, props: { informationData: { type: Array, }, }, watch: { informationData(val) { this.listData = val; console.log(this.informationData) console.log(this.listData) } } } ```