vue-book icon indicating copy to clipboard operation
vue-book copied to clipboard

P72 代码是有错误的

Open chaihongjun opened this issue 6 years ago • 1 comments

<div id="app"> <input type="raido" v-model="picked" :value="value"> <label>单选</label> <p>{{picked}}</p> <p>{{value}}</p> </div> <script src="https://unpkg.com/vue/dist/vue.js"></script> <script> var app = new Vue({ el: '#app', data: { picked: false, value: 123 } }) </script>

  • :value="value" conflicts with v-model on the same element because the latter already expands to a value binding internally

chaihongjun avatar Jul 11 '18 00:07 chaihongjun

Vue是当前最新版

chaihongjun avatar Jul 11 '18 00:07 chaihongjun