better Button vor history in ##200
This commit is contained in:
parent
af8584173e
commit
796e359463
|
@ -52,7 +52,9 @@
|
||||||
<v-card-title>
|
<v-card-title>
|
||||||
{{ user.firstname }} {{ user.lastname }}
|
{{ user.firstname }} {{ user.lastname }}
|
||||||
<v-spacer />
|
<v-spacer />
|
||||||
<v-btn @click="menu = !menu">test</v-btn>
|
<v-btn @click="menu = !menu" icon>
|
||||||
|
<v-icon>{{ menuIcon }}</v-icon>
|
||||||
|
</v-btn>
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-row>
|
<v-row>
|
||||||
|
@ -158,6 +160,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters, mapActions } from 'vuex'
|
import { mapGetters, mapActions } from 'vuex'
|
||||||
|
import { mdiMenu } from '@mdi/js'
|
||||||
import AddAmountSkeleton from './Skeleton/AddAmountSkeleton'
|
import AddAmountSkeleton from './Skeleton/AddAmountSkeleton'
|
||||||
export default {
|
export default {
|
||||||
name: 'AddAmount',
|
name: 'AddAmount',
|
||||||
|
@ -168,7 +171,8 @@ export default {
|
||||||
menu: false,
|
menu: false,
|
||||||
dialog: false,
|
dialog: false,
|
||||||
componentRenderer: 0,
|
componentRenderer: 0,
|
||||||
timer: ''
|
timer: '',
|
||||||
|
menuIcon: mdiMenu
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
|
Loading…
Reference in New Issue