You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

73 lines
1.4 KiB

<template>
<v-data-table
:value="selected"
:headers="headers"
:items="projects"
:search="search"
:loading="loading"
loading-text="Loading... Please wait"
item-key="id"
show-select
@input="update"
>
<template v-slot:top>
<v-text-field
v-model="search"
prepend-inner-icon="search"
label="Search"
single-line
hide-details
filled
/>
</template>
<template v-slot:item.name="{ item }">
<nuxt-link :to="`/projects/${item.id}`">
<span>{{ item.name }}</span>
</nuxt-link>
</template>
</v-data-table>
</template>
<script>
import { mapState, mapActions, mapMutations } from 'vuex'
export default {
data() {
return {
search: '',
headers: [
{
text: 'Name',
align: 'left',
value: 'name'
},
{
text: 'Description',
value: 'description'
},
{
text: 'Type',
value: 'project_type'
}
]
}
},
computed: {
...mapState('projects', ['projects', 'selected', 'loading'])
},
async created() {
await this.getProjectList()
},
methods: {
...mapActions('projects', ['getProjectList']),
...mapMutations('projects', ['updateSelected']),
update(selected) {
this.updateSelected(selected)
}
}
}
</script>