We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6da5895 commit b6b2ea6Copy full SHA for b6b2ea6
html/chat-room/chat-room.html
@@ -0,0 +1,54 @@
1
+
2
3
+<chat-room>
4
5
+ <template shadowrootmode=open>
6
7
+ <style>
8
9
+ </style>
10
11
+ <chat-room-hdr component=parent></chat-room-hdr>
12
13
+ <chat-room-display component=parent></chat-room-display>
14
15
+ <slot name=input></slot>
16
17
+ </template>
18
19
+ <script>
20
21
+(function({mod,host}){
22
23
+ var obj = {
24
+ [Symbol.toStringTag] : 'chat-room',
25
+ version : 'v1.0',
26
+ };
27
28
+ var df=true,did='chat-room';
29
30
31
+ obj.initmod = function(params){
32
+ }//initmod
33
34
35
36
+ obj.init = async function(){
37
+ }//init
38
39
40
41
+ obj.initdom = async function(){
42
+ }//initdom
43
44
45
46
+ return ob;
47
48
+//chat-room
49
+})();
50
51
+ </script>
52
53
+</chat-room>
54
0 commit comments