vue项目用typescript,报Property 'xxx' does not exist on type 'xxx'

引入iView
import iView from 'iview'

配置message

iView.Message.config({
    top: 150,
    duration: 5
})

会报这样的错

clipboard.png

似乎需要引入Message的ts声明文件

像这样引入
import iView, { Message } from 'iview'

请问

iView.Message.config({
    top: 150,
    duration: 5
})

这段应该怎么改?

阅读 13.1k
1 个回答
// 安装声明文件
npm i @types/iview

或者

(iView as any).Message.config({
    top: 150,
    duration: 5
})
推荐问题