element中el-cascader使用props设置value、label、children

从后端拿到arr数据结构:

cityList: [
	{
		id: 1,
		name: '北京',
		child: [
			id: 11,
			name: '大兴区',
			child: [
				id: 111,
				name: '亦庄'
			]
		]
	}
]
vue文件代码



js

data: {
	optionProps: {
		value: 'id',
		label: 'name',
		children: 'child'
	}
}
原文链接:https://blog.csdn.net/m0_38069630/article/details/85639378

你可能感兴趣的:(VUE)