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
+3 -2
View File
@@ -6,6 +6,7 @@
:icon="item.icon"
:title="item.title"
:url="item.url"
:target="item.target"
@launch-app="launchApp"
/>
</div>
@@ -26,8 +27,8 @@ export default {
SideBarItem,
},
methods: {
launchApp(url) {
this.$emit('launch-app', url);
launchApp(options) {
this.$emit('launch-app', options);
},
},
};