17 lines
273 B
JavaScript
17 lines
273 B
JavaScript
|
#include utility.js
|
||
|
|
||
|
Umi.UI.ChatMessageList = function() {
|
||
|
const html = $e({
|
||
|
attrs: {
|
||
|
id: 'umi-messages',
|
||
|
className: 'chat',
|
||
|
},
|
||
|
});
|
||
|
|
||
|
return {
|
||
|
getElement: function() {
|
||
|
return html;
|
||
|
},
|
||
|
};
|
||
|
};
|