Files
screen-shunhe/src/App.vue
2023-08-14 09:37:35 +08:00

27 lines
511 B
Vue

<template>
<div id="app">
<v-toast v-show="showToast"></v-toast>
<v-dialog v-show="showAlert"></v-dialog>
<router-view/>
</div>
</template>
<script>
import toast from '@/components/toast'
import dialog from '@/components/dialog'
import { mapGetters } from 'vuex'
export default {
name: 'App',
components: {
'v-toast': toast,
'v-dialog': dialog
},
data () {
return {}
},
computed: {
...mapGetters(['showToast', 'showAlert'])
}
}
</script>