0👍
There is no option to override the icon by using some property that is available on the el-select component. But it is possible that you override the icon by using css
.el-select .el-input .el-select__caret::before {
content: '\e78e' // calendar icon of element-ui
}
- [Vuejs]-Hello problem modal window I want to insert the right image when clicking on the image but it always returns the same image what's solution?
- [Vuejs]-Can I use Vue-native with mysql
0👍
You need change de icon content on CSS.
.el-icon-arrow-up:before { content: "\e600"; }
.el-icon-arrow-down:before { content: "\e603"; }
For:
.el-icon-arrow-up:before { content: url(custom.svg); }
.el-icon-arrow-down:before { content: url(custom.svg); }
Grettings
- [Vuejs]-Inject nuxt.config.js configuration into globally registered component using custom built Nuxt module
- [Vuejs]-Center stage in Vue-Konva
Source:stackexchange.com