forked from tornadocash/classic-ui
24 lines
423 B
Vue
24 lines
423 B
Vue
<template>
|
|
<div>
|
|
<b-button type="is-back" icon-left="arrow-left" @click="onBack">
|
|
{{ $t('back') }}
|
|
</b-button>
|
|
<CreateProposal @onBack="onBack" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import CreateProposal from '@/components/governance/CreateProposal'
|
|
|
|
export default {
|
|
components: {
|
|
CreateProposal
|
|
},
|
|
methods: {
|
|
onBack() {
|
|
this.$router.push({ path: '/governance' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|