Skip to content

Instantly share code, notes, and snippets.

@yann-yinn
Created March 13, 2019 10:39
Show Gist options
  • Save yann-yinn/11fcaa62c391fd3897a94bbeb27cc0ae to your computer and use it in GitHub Desktop.
Save yann-yinn/11fcaa62c391fd3897a94bbeb27cc0ae to your computer and use it in GitHub Desktop.
paginator
<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