1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat: new trigger function tabs

This commit is contained in:
2021-07-19 22:38:56 +02:00
parent e78ca2417e
commit 58b91ebfe0
5 changed files with 105 additions and 68 deletions

View File

@ -16,13 +16,21 @@
</template>
<script>
import { mapGetters } from 'vuex';
import { mapGetters, mapActions } from 'vuex';
export default {
name: 'WorkspaceEmptyState',
computed: {
...mapGetters({
applicationTheme: 'settings/getApplicationTheme'
})
},
created () {
this.changeBreadcrumbs({});
},
methods: {
...mapActions({
changeBreadcrumbs: 'workspaces/changeBreadcrumbs'
})
}
};
</script>