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

17 lines
252 B

3 months ago
1 month ago
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 true
  13. // return this.permissions.includes(permission) || true
  14. },
  15. }
  16. }