Fix type check error

pull/3445/head
johnniang 2019-05-04 16:35:01 +08:00
parent 4613ecd8d1
commit d9e6465072
1 changed files with 4 additions and 1 deletions

View File

@ -5,7 +5,7 @@
treeDefaultExpandAll treeDefaultExpandAll
:treeDataSimpleMode="true" :treeDataSimpleMode="true"
:allowClear="true" :allowClear="true"
:value="categoryId" :value="categoryIdString"
@change="handleSelectionChange" @change="handleSelectionChange"
> >
</a-tree-select> </a-tree-select>
@ -43,6 +43,9 @@ export default {
pId: category.parentId pId: category.parentId
} }
}) })
},
categoryIdString() {
return this.categoryId.toString()
} }
}, },
methods: { methods: {