Skip to content

Instantly share code, notes, and snippets.

@arwinvdv
arwinvdv / vue-3-simple-table.vue
Created June 24, 2021 07:39
A very simple vue 3 table
<template>
<div>
<table>
<thead>
<tr>
<th v-for="(column, index) in columns" :key="`col-${index}`" @click="sort(column.field)">{{ column.label }}</th>
</tr>
</thead>
<tbody>
<tr v-for="(row, index_row) in sortedRows" :key="'row' + index_row + uid">