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