Resolve audioTag undefined error (#4363)

This commit is contained in:
MeiMei 2019-02-24 10:50:45 +09:00 committed by syuilo
parent 61d5e5833a
commit 6528c53874

View file

@ -44,7 +44,7 @@ export default Vue.extend({
},
mounted() {
const audioTag = this.$refs.audio as HTMLAudioElement;
audioTag.volume = this.$store.state.device.mediaVolume;
if (audioTag) audioTag.volume = this.$store.state.device.mediaVolume;
},
methods: {
volumechange() {