如何获取Vue js中元素的ID?这些项目使用的是youtube数据API中的v-for。
uploadOptions: FileUploaderOptions = { url: 'https://localhost:4200/api/course/document', method: 'patch' };
任何帮助,不胜感激!
答案 0 :(得分:1)
移动我的评论以按照建议回答:
假设renderVideo()
在您的组件方法中,则只需传递现有ID:
...
@click="renderVideo(video.snippet.resourceId.videoId)"
...
renderVideo(id) {
console.log(id);
}