使用vux时,有时遇见 Invalid prop: custom validator check failed for prop "type".错误


...
 export default {
        ...
        data: function () {
            return {
             orderDetail:{
               quantity:'1',
             }
           }
   ...            

警告:

[Vue warn]: Invalid prop: custom validator check failed for prop "value".

found in

---> at node_modules\vux\src\components\x-number\index.vue
        at node_modules\vux\src\components\group\index.vue
          at src\views\good_detail\good_detail.vue
            at src\App.vue
             

 

问题原因:x-number绑定的变量类型不对,我写的是字符型,改number型就好了;

你可能感兴趣的:(vue笔记,vux)