thelounge/client/js/socket-events/mentions.js
2020-04-11 12:49:42 +03:00

9 lines
160 B
JavaScript

"use strict";
import socket from "../socket";
import store from "../store";
socket.on("mentions:list", function (data) {
store.commit("mentions", data);
});