antdvue defaultSortOrder改变值之后,高亮样式不生效
时间: 2024-02-06 10:04:13 浏览: 101
antd vue 刷新保留当前页面路由,保留选中菜单,保留menu选中操作
5星 · 资源好评率100%
如果您已经更改了 `defaultSortOrder` 属性的值,但是高亮样式仍然不生效,您可以尝试使用 `defaultSortOrder` 属性的另一种方式:
```
<template>
<a-table :columns="columns" :data-source="data" :default-sort-order="{prop: 'age', order: 'ascending'}">
<template slot="name" slot-scope="text, record">{{ text }} - {{ record.first_name }}</template>
<template slot="age" slot-scope="text">{{ text }} Years</template>
<template slot="address" slot-scope="text">{{ text }}</template>
</a-table>
</template>
```
在这个示例中,我们将 `defaultSortOrder` 属性的值设置为一个对象,该对象具有 `prop` 和 `order` 属性。`prop` 属性表示默认按照哪一列排序,`order` 属性表示默认的排序顺序(升序或降序)。
如果您仍然无法解决问题,请确保您的 CSS 样式没有被其他样式覆盖,并且在正确引入。
阅读全文