Files
erpnext/erpnext/public/js/reconciliation/pages/Dashboard.vue
Charles-Henri Decultot c75a2b1eed Plaid integration
2019-01-07 15:20:06 +00:00

25 lines
251 B
Vue

<template>
<div class="dashboard-container">
<div>
Dashboard
</div>
</div>
</template>
<script>
export default {
props: ['company'],
data() {
return {}
},
created() {
},
computed: {
},
methods: {
},
destroyed() {
}
};
</script>