mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
34 lines
727 B
Vue
34 lines
727 B
Vue
<template>
|
|
<div class="row content-box full-height">
|
|
<woot-wizard
|
|
class="hide-for-small-only medium-3 columns"
|
|
:global-config="globalConfig"
|
|
:items="items"
|
|
/>
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import globalConfigMixin from 'shared/mixins/globalConfigMixin';
|
|
|
|
export default {
|
|
mixins: [globalConfigMixin],
|
|
computed: {
|
|
...mapGetters({
|
|
globalConfig: 'globalConfig/get',
|
|
}),
|
|
items() {
|
|
return this.$t('INBOX_MGMT.CREATE_FLOW').map(item => ({
|
|
...item,
|
|
body: this.useInstallationName(
|
|
item.body,
|
|
this.globalConfig.installationName
|
|
),
|
|
}));
|
|
},
|
|
},
|
|
};
|
|
</script>
|