thelounge/client/js/socket-events/mentions.js

9 lines
160 B
JavaScript
Raw Normal View History

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