<TreeColumns>
<TreeColumn
v-for="column in state.gridOptions.columns"
:key="column.field"
:field="column.field"
:headerText="column.headerText"
:type="column.GridColumnType"
:format="column.format"
:width="column.width"
:clipMode="'EllipsisWithTooltip'"
:textAlign="column.TextAlign"></TreeColumn>
<TreeColumn headerText="操作" width="130" :template="'operateTemplate'" :is-frozen="true" freeze="Fixed" ></TreeColumn>
</TreeColumns>
:is-frozen="true" freeze="Fixed"
After adding :is-frozen="true" and freeze="Fixed", the display appears abnormal. When I remove :is-frozen="true" and freeze="Fixed", the display returns to normal. I'm not sure what the cause is.