Created
February 7, 2022 08:41
-
-
Save jinnyMcKindy/755d96b68ac451e8060a0407f9ae1e64 to your computer and use it in GitHub Desktop.
headers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected get headers(): TableHeader[] { | |
return [ | |
{ value: "id", text: "ID", width: 70, sortable: false }, | |
{ | |
value: "fullname", | |
text: "ФИО пользователя", | |
width: 200, | |
sortable: false, | |
}, | |
{ | |
value: "role", | |
text: "Роль", | |
sortable: false, | |
}, | |
{ | |
value: "specialties", | |
text: "Специальность", | |
sortable: false, | |
}, | |
{ | |
value: "positions", | |
text: "Должность", | |
hidden: true, | |
width: 200, | |
sortable: false, | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment