| | |
| | | if (localData) { |
| | | this.chapterFiveData = JSON.parse(localData); |
| | | } |
| | | window.timerFive = setInterval(() => { |
| | | this.saveTime--; |
| | | if (this.saveTime == 0) { |
| | | this.saveChapterOneData(); |
| | | } |
| | | }, 1000); |
| | | this.getVideoPath(); |
| | | }, |
| | | unmounted() { |
| | | if (window.timerFive) { |
| | | clearInterval(window.timerFive); |
| | | } |
| | | localStorage.setItem( |
| | | "chapterFiveData", |
| | | JSON.stringify(this.chapterFiveData) |
| | | ); |
| | | }, |
| | | methods: { |
| | | changeResources(type) { |
| | |
| | | } |
| | | }, |
| | | saveChapterOneData() { |
| | | this.saveTime = 20; |
| | | localStorage.setItem( |
| | | "chapterFiveData", |
| | | JSON.stringify(this.chapterFiveData) |