Added new tag filter stub.

This commit is contained in:
2020-05-25 04:39:58 +02:00
parent b180572d5f
commit fe69ec4175
10 changed files with 90 additions and 126 deletions

View File

@@ -303,8 +303,8 @@ import Gender from './gender.vue';
import Social from './social.vue';
async function fetchActor() {
this.actor = await this.$store.dispatch('fetchActorBySlug', {
actorSlug: this.$route.params.actorSlug,
this.actor = await this.$store.dispatch('fetchActorById', {
actorId: Number(this.$route.params.actorId),
range: this.$route.params.range,
});
}