Added breadcrumbs to creature properties

This commit is contained in:
Stefan Zermatten
2021-04-13 14:17:31 +02:00
parent e1df145675
commit 2150bd6da4
4 changed files with 113 additions and 3 deletions

View File

@@ -5,6 +5,12 @@
:light="!isDark"
:flat="flat"
>
<v-btn
icon
@click="back"
>
<v-icon>arrow_back</v-icon>
</v-btn>
<property-icon
:model="model"
class="mr-2"
@@ -163,6 +169,9 @@ export default {
colorChanged(value){
this.$emit('color-changed', value);
},
back(){
this.$store.dispatch('popDialogStack');
},
}
}
</script>