我正在使用vuejs 2.0创建一个 webapp 。我使用以下代码创建了简单的选择输入:
<select v-model="age">
<option value="" disabled selected hidden>Select Age</option>
<option value="1"> 1 Year</option>
<option value="11"> 11 Year</option>
</select>
data
我的 Vue 组件中有这个:
data () {
return {
age: "",
}
},
watch: {
age: function (newAge) {
console.log("log here")
}
但是在为选择添加默认值时我开始收到此错误:
./~/vue-loader/lib/template-compiler.js?id=data-v-5cf0d7e0!./~/vue-loader/lib/selector.js?type=template&index=0!./src/ 中的错误components/cde.vue 模板语法错误:使用 v-model 时将忽略内联选定属性。改为在组件的数据选项中声明初始值。
@ ./src/components/cde.vue 10:23-151
@ ./~/babel-loader!./~/vue-loader/lib/selector.js? type=script&index=0!./src/views/abcView.vue @ ./src/views/abcView.vue
@ ./src/router/index.js
@ ./src/app.js
@ ./src/client-entry.js
@多应用
我也尝试在组件的数据部分中提供默认值,但没有发生任何事情。我也尝试过v-bind
,但后来观察者停止研究年龄变量。