init
This commit is contained in:
commit
44f31f8b9f
402 changed files with 47865 additions and 0 deletions
19
pages/governance/index.vue
Normal file
19
pages/governance/index.vue
Normal file
|
@ -0,0 +1,19 @@
|
|||
<template>
|
||||
<ProposalsList @onCreateProposal="onCreateProposal" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
/* eslint-disable no-console */
|
||||
import ProposalsList from '@/components/governance/ProposalsList'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
ProposalsList
|
||||
},
|
||||
methods: {
|
||||
onCreateProposal() {
|
||||
this.$router.push({ path: '/governance/create' })
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue