mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2024-11-23 01:50:03 +01:00
0fe0b3bbc5
enable loading
39 lines
747 B
Vue
39 lines
747 B
Vue
<template>
|
|
<div class="wrapper">
|
|
<Navbar />
|
|
<section class="main-content section">
|
|
<div class="container">
|
|
<nuxt />
|
|
</div>
|
|
</section>
|
|
<Footer />
|
|
<Loading />
|
|
<Notices />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Navbar from '@/components/Navbar'
|
|
import Footer from '@/components/Footer'
|
|
import Loading from '@/components/Loading'
|
|
import Notices from '@/components/Notices'
|
|
import { mapActions } from 'vuex'
|
|
|
|
export default {
|
|
components: {
|
|
Navbar,
|
|
Footer,
|
|
Loading,
|
|
Notices,
|
|
},
|
|
mounted() {
|
|
this.initProvider()
|
|
this.fetchDeploymentStatus()
|
|
},
|
|
methods: {
|
|
...mapActions('provider', ['initProvider']),
|
|
...mapActions('steps', ['fetchDeploymentStatus']),
|
|
},
|
|
}
|
|
</script>
|