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/pages/NewCallForward/CscCallForward.vue

30 lines
638 B

<template>
<csc-page>
New CallForward entry point
</csc-page>
</template>
<script>
import { mapState, mapGetters } from 'vuex'
// import {
// startLoading,
// stopLoading,
// showToast,
// showGlobalError
// } from '../../../helpers/ui'
// import CscPage from '../../CscPage'
export default {
data () {},
components: {},
created() {},
computed: {
...mapState('callForward', []),
...mapGetters('callForward', [])
},
watch: {}
}
</script>
<style lang="stylus" rel="stylesheet/stylus">
</style>