mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-22 09:56:53 +01:00
21 lines
301 B
Vue
21 lines
301 B
Vue
<template>
|
|
<div class="wrapper">
|
|
<Navbar />
|
|
<section class="main-content section">
|
|
<div class="container">
|
|
<nuxt />
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Navbar from '@/components/Navbar'
|
|
|
|
export default {
|
|
components: {
|
|
Navbar
|
|
}
|
|
}
|
|
</script>
|