修改默认语言为英文 el-table filter 筛选
时间: 2023-10-18 12:13:07 浏览: 115
el-table-infinite-scroll:El-Table无限滚动
5星 · 资源好评率100%
To change the default language to English for el-table filter, you can add the following code to your Vue.js project:
```js
import lang from 'element-ui/lib/locale/lang/en'
import locale from 'element-ui/lib/locale'
locale.use(lang)
```
This will change the default language to English for all Element UI components in your project, including el-table filter.
阅读全文