NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
### 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) } } } ```