Listen for new players while in the lobby

This commit is contained in:
Oliver-Akins 2020-10-02 10:18:02 -06:00
parent 2c1098ca49
commit 5262cbbd00

View file

@ -44,7 +44,9 @@ export default {
});
};
},
PlayerJoin() {},
NewPlayer(data) {
this.players.push(data.player);
},
},
}
</script>