Created
March 13, 2019 10:39
-
-
Save yann-yinn/11fcaa62c391fd3897a94bbeb27cc0ae to your computer and use it in GitHub Desktop.
paginator
This file contains hidden or 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
<GenySmartTable | |
:query="query" | |
:query-variables="queryVariables" | |
query-id="getOrganizations" | |
:headers="headers" | |
@onSortClick="onSortClick" | |
> | |
<template #tr="{row}"> | |
<td>{{row.name}}</td> | |
<td>{{row.genyid}}</td> | |
<td>{{row.managers.join(', ')}}</td> | |
<td>{{row.description}}</td> | |
</template> | |
</GenySmartTable> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment