如何解决使用组件时方法报错(标签-ar|关键词-function)

写项目时,代码使用了

<u-col span="8" >

然后页面一直报

Uncaught (in promise) TypeError: this.parent.getComponentWidth is not a function

在项目里面搜了一下这个方法,发现有

```html
methods: {
async init() {
// 支付宝小程序不支持provide/inject,所以使用这个方法获取整个父组件,在created定义,避免循环引用
this.updateParentData()
this.width = await this.parent.getComponentWidth()
},

```请问怎么解决

你找 this.parent.getComponentWidth() 这个方法在哪里 有这个吗?是不是this.$parent 啊

ctrl+f,打开搜索,全局搜索一下。