Files
DiceCloud/app/imports/ui/tabletop/TabletopToolbar.vue
2021-03-25 12:54:44 +02:00

30 lines
434 B
Vue

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