diff --git a/src/AppDocumentation.vue b/src/AppDocumentation.vue index dcf4e6fa9..41dce3fb2 100644 --- a/src/AppDocumentation.vue +++ b/src/AppDocumentation.vue @@ -47,14 +47,21 @@ export default { } if (this.service) { + let serviceArr = []; + + this.service.forEach(el => { + serviceArr.push(el.split(',')) + }) /* eslint-disable */ - tabs.push( - -

-                            {services[this.service]}
-                        
-
- ); + serviceArr.forEach((el, i) => { + tabs.push( + +

+                                {services[el]}
+                            
+
+ ); + }) } if (this.data) { diff --git a/src/views/autocomplete/AutoCompleteDoc.vue b/src/views/autocomplete/AutoCompleteDoc.vue index 5a58552a9..de5104d58 100755 --- a/src/views/autocomplete/AutoCompleteDoc.vue +++ b/src/views/autocomplete/AutoCompleteDoc.vue @@ -1,5 +1,5 @@