vue.js:634 [Vue warn]: <select multiple v-model=“occupation“> expects an Array value for its binding

甄飞飙
2023-12-01

错误产生环境

练习vue双向数据绑定时产生

错误描述

vue.js:634 [Vue warn]: <select multiple v-model="occupation"> expects an Array value for its binding, but got Number

(found in <Root>)

错误原因

v-model绑定的值希望是一个数组类型,但是我们提供的是一个数值类型,所以不符合要求。

解决办法

将v-model绑定的值更换为数组

 类似资料: