Chat UIでサウンドがならない問題を修正

This commit is contained in:
syuilo 2021-02-20 21:06:26 +09:00
parent 9860489f88
commit 0d1158335f

View file

@ -61,11 +61,6 @@ export default defineComponent({
type: String, type: String,
required: false required: false
}, },
sound: {
type: Boolean,
required: false,
default: false,
}
}, },
emits: ['note', 'queue', 'before', 'after'], emits: ['note', 'queue', 'before', 'after'],
@ -95,9 +90,7 @@ export default defineComponent({
this.$emit('note'); this.$emit('note');
if (this.sound) { sound.play(note.userId === this.$i.id ? 'noteMy' : 'note');
sound.play(note.userId === this.$i.id ? 'noteMy' : 'note');
}
}; };
const onUserAdded = () => { const onUserAdded = () => {