Files
DiceCloud/app/imports/ui/tabletop/TabletopToolbar.vue
2020-07-17 23:31:12 +02:00

30 lines
425 B
Vue

<template lang="html">
<v-toolbar
app
color="secondary"
dark
dense
>
<v-toolbar-side-icon @click="toggleDrawer" />
<v-toolbar-title>
Tabletop
</v-toolbar-title>
<v-spacer />
</v-toolbar>
</template>
<script>
import { mapMutations } from 'vuex';
export default {
methods: {
...mapMutations([
'toggleDrawer',
]),
}
}
</script>
<style lang="css" scoped>
</style>