You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/src/components/CscMainMenuNewFeatures.vue

69 lines
1.4 KiB

<template>
<div>
<div
v-if="!menuMinimized"
class="q-pr-md q-pl-md q-pt-xs q-pb-xs text-subtitle2"
>
{{ $t('New features') }}
</div>
<csc-main-menu
:items="items"
/>
</div>
</template>
<script>
import CscMainMenu from 'components/CscMainMenu'
export default {
name: 'CscMainMenuNewFeatures',
components: {
CscMainMenu
},
props: {
callStateTitle: {
type: String,
default: ''
},
callStateSubtitle: {
type: String,
default: ''
},
isCallForward: {
type: Boolean,
default: false
},
isCallBlocking: {
type: Boolean,
default: false
},
isPbxAdmin: {
type: Boolean,
default: false
},
isPbxConfiguration: {
type: Boolean,
default: false
},
menuMinimized: {
type: Boolean,
default: false
}
},
data () {
return {}
},
computed: {
items () {
return [
{
to: '/user/new-call-forward',
icon: 'phone_forwarded',
label: this.$t('Call Forwarding'),
visible: true
}
]
}
}
}
</script>