我用yarn create nuxt-app
用nuxt / eslint创建了一个简单的项目设置。之后,我根据https://typescript.nuxtjs.org
一切正常-但我无法使用“确定分配断言”来访问$ refs元素,因为es-lint解析器会引发错误。
$refs!: {
inputElement: HTMLInputElement
}
抛出
Parsing error: Unexpected token
与铸造相同:
let inputElement: HTMLInputElement = this.$refs['inputElement'] as HTMLInputElement
有人可以帮忙吗?
提前谢谢
我已经在此处上传了一个示例项目:https://gitlab.com/chrizk/nuxt-ts