init
This commit is contained in:
commit
44f31f8b9f
402 changed files with 47865 additions and 0 deletions
23
pages/governance/create.vue
Normal file
23
pages/governance/create.vue
Normal file
|
@ -0,0 +1,23 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue