mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-08 15:42:52 +00:00
25 lines
251 B
Vue
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> |