Created
November 22, 2016 01:42
-
-
Save srhise/3e4d9ed6949535b9801ade9756201294 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> | |
<div class="grid"> | |
<div class="column-headings"> | |
<div class="column" v-for="column in columns"> | |
{{column.name}} | |
<a v-if="column.sortable === true"><i class="fa fa-caret-down"></i></a> | |
</div> | |
</div> | |
<div class="grid-rows"> | |
<div class="grid-row" v-for="row in data"> | |
<div v-for="column in columns"> | |
{{row[column.property]}} | |
</div> | |
</div> | |
</div> | |
</div> | |
</template> | |
<script> | |
export default { | |
props: ['data', 'columns'] | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment