【发布时间】:2020-01-26 09:59:02
【问题描述】:
我正在将一个 ASPX 页面转换为 vue。所有的 vue 组件都正确加载,我也得到了 refs 对象
`<test-report ref="testReport" ></test-report>
<script>
method:{
Loaded:{
this.objResult = this.refs.testReport
}
},
`
但是在提交 ASPX 页面后,我需要在 vue 组件中显示一些其他数据,但 refs 对象显示未定义。我需要在该对象中调用另一个函数,但它显示为未定义。
`<script>
method:{
AfterLoaded:{
this.objResult = this.refs.testReport //showing undefined
}
},
</script>`
请帮忙
【问题讨论】:
标签: vue.js vue-component