1.table 滚动展示
:scroll=“{ x: 1500, y: 300 }”
<a-table
:data-source="data"
:scroll="{ x: 1500, y: 300 }"
:bordered="true"
>
2.select 属性placeholder不生效问题
解决:v-model 绑定的变量初始为 undefined 或 null,不能为空
1.table 滚动展示
:scroll=“{ x: 1500, y: 300 }”
<a-table
:data-source="data"
:scroll="{ x: 1500, y: 300 }"
:bordered="true"
>
2.select 属性placeholder不生效问题
解决:v-model 绑定的变量初始为 undefined 或 null,不能为空