Use project list from Vuex

This commit is contained in:
D. Berge
2023-10-29 15:27:40 +01:00
parent 3d42ce6fbc
commit f157f49312

View File

@@ -151,8 +151,9 @@ export default {
},
methods: {
async list () {
this.items = await this.api(["/project"]) || [];
this.items = [...this.projects];
},
async summary (item) {