15 lines
219 B
Vue
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>
|