import { mapGetters } from 'vuex' export default { computed: { ...mapGetters(['isOperator', 'isGroupAdmin']) }, render (h) { return h( this.isOperator ? 'Designer' : this.isGroupAdmin ? 'Manager' : 'Viewer', { props: this.$attrs } ) } }