mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
Initial commit.
This commit is contained in:
33
client/src/pages/Dashboard/Dashboard.vue
Normal file
33
client/src/pages/Dashboard/Dashboard.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<template>
|
||||
<div id="dashboard" class="dashboard">
|
||||
<DashboardSidebar />
|
||||
|
||||
<div class="dashboard__content">
|
||||
<DashboardTopbar></DashboardTopbar>
|
||||
|
||||
<div class="dashboard__content-inner">
|
||||
<router-view></router-view>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DashboardSidebar from '@/views/Sidebar';
|
||||
import DashboardTopbar from '@/views/Topbar';
|
||||
|
||||
export default {
|
||||
name: 'dashboard',
|
||||
components: {
|
||||
DashboardTopbar,
|
||||
DashboardSidebar,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
#dashboard{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
</style>
|
||||
9
client/src/pages/Dashboard/Home.vue
Normal file
9
client/src/pages/Dashboard/Home.vue
Normal file
@@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<div>Home</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'home',
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user