我在打字稿中使用带有类组件的 vue3 我的类看起来像:
import {Options, Vue} from "vue-class-component";
@Options({
props: {
result: Object
}
})
export default class imageResult extends Vue {
currentImage = 0;
getSlides(){
console.log('result',this.$props.result); // not working
console.log('result',this.result); // not working too
}
我的问题是,我怎样才能访问和使用我班级内的财产?
this.result和this.$props.result 都会给我一个错误。
有人能帮我吗?提前致谢