Re: #254 - Adds new tab functionality to Workspace

This commit is contained in:
Alicia Sykes
2021-09-29 20:39:39 +01:00
parent bc100b8143
commit 0bfca16dda
4 changed files with 13 additions and 7 deletions

View File

@@ -58,8 +58,8 @@ export default {
this.isOpen = this.isOpen.map((val, ind) => (ind !== index ? false : !val));
},
/* When item clicked, emit a launch event */
launchApp(url) {
this.$emit('launch-app', url);
launchApp(options) {
this.$emit('launch-app', options);
},
/* If an initial URL is specified, then open relevant section */
openDefaultSection() {