Created
June 13, 2019 02:14
-
-
Save CristalT/8057e1f9ce67163774ebc485b5d8e8fb to your computer and use it in GitHub Desktop.
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
<template> | |
<q-table | |
row-key="key" | |
:data="table.data" | |
:columns="table.columns" | |
:pagination.sync="table.pagination" | |
> | |
<q-tr | |
slot="body" | |
slot-scope="props" | |
:props="props" | |
@click.native="doSomething(props.row)" | |
class="cursor-pointer" | |
> | |
<q-td v-for="col in props.cols" :key="col.name" :props="props">{{ col.value }}</q-td> | |
</q-tr> | |
</q-table> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment