工单小程序2024-11-20
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.

16 lines
226 B

3 months ago
  1. import { mapState } from 'vuex'
  2. export default {
  3. data() {
  4. return {
  5. }
  6. },
  7. computed: {
  8. ...mapState(['permissions']),
  9. },
  10. methods: {
  11. isPermission(permission){
  12. return this.permissions.includes(permission)
  13. },
  14. }
  15. }