子组件中利用watch监听父组件值的变化

// 子组件
props: ["a"],
	watch: {
		a(oldValue, newValue) {
			// oldValue  a旧值
			// newValue a新值
		}
	}
Logo

前往低代码交流专区

更多推荐