airsonic-refix/src/library/track/BaseTableHead.vue
2021-03-20 13:31:53 +01:00

15 lines
219 B
Vue

<template functional>
<thead>
<tr>
<th>#</th>
<th class="text-left">
Title
</th>
<slot />
<th class="text-right">
Actions
</th>
</tr>
</thead>
</template>