I use the iview component library (2.11.0) and follow the instructions on the official website ide/start" rel=" nofollow noreferrer "> https://www.iviewui.com/docs/.
to use the date component, but in the local project, the font icon is not loaded, as shown in figure
this is how I introduced it:
import "iview/dist/styles/iview.css"
import "iview/dist/styles/fonts/ionicons.eot"
import "iview/dist/styles/fonts/ionicons.svg"
import "iview/dist/styles/fonts/ionicons.ttf"
import "iview/dist/styles/fonts/ionicons.woff"
import {locale, DatePicker, Upload} from "iview"
import lang from "iview/dist/locale/en-US"
// config language
locale(lang)
Vue.component("DatePicker", DatePicker)
Vue.component("Upload", Upload)
could you tell me how to solve the problem?