forked from tornadocash/classic-ui
20 lines
361 B
Vue
20 lines
361 B
Vue
<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>
|