mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
25 lines
569 B
Vue
25 lines
569 B
Vue
<template>
|
|
<div>
|
|
<b-table :items="items" :fields="fields" caption-top>
|
|
<template #table-caption>This is a table caption at the top.</template>
|
|
</b-table>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'UserTable',
|
|
props: {},
|
|
data() {
|
|
return {
|
|
fields: ['first_name', 'last_name', 'age'],
|
|
items: [
|
|
{ age: 40, first_name: 'Dickerson', last_name: 'Macdonald' },
|
|
{ age: 21, first_name: 'Larsen', last_name: 'Shaw' },
|
|
{ age: 89, first_name: 'Geneva', last_name: 'Wilson' },
|
|
],
|
|
}
|
|
},
|
|
}
|
|
</script>
|