forked from tornadocash/classic-ui
24 lines
298 B
Vue
24 lines
298 B
Vue
|
<template>
|
||
|
<div class="account-box">
|
||
|
<Header />
|
||
|
<Actions />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Header from './Header'
|
||
|
import Actions from './Actions'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Header,
|
||
|
Actions
|
||
|
},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|