Added actor expand button to profile.

This commit is contained in:
2020-01-24 23:36:06 +01:00
parent 4dbb961059
commit c93116dee2
7 changed files with 233 additions and 128 deletions

View File

@@ -12,6 +12,7 @@
import Actor from '../tile/actor.vue';
async function mounted() {
this.pageTitle = 'Actors';
this.actors = await this.$store.dispatch('fetchActors', { limit: 1000 });
}
@@ -22,6 +23,7 @@ export default {
data() {
return {
actors: [],
pageTitle: null,
};
},
mounted,