mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-20 02:01:19 +00:00
Expand new layout code.
This commit is contained in:
17
frontend/src/pages/dashboard.js
vendored
17
frontend/src/pages/dashboard.js
vendored
@@ -1,6 +1,13 @@
|
||||
import Dashboard from "../components/dashboard/Dashboard";
|
||||
import TopBoxes from "../components/dashboard/TopBoxes";
|
||||
|
||||
import MainAccount from "../components/dashboard/MainAccount";
|
||||
import MainAccountList from "../components/dashboard/MainAccountList";
|
||||
import MainBillsChart from "../components/dashboard/MainBillsChart";
|
||||
import MainBudgetChart from "../components/dashboard/MainBudgetChart";
|
||||
import MainCategoryChart from "../components/dashboard/MainCategoryChart";
|
||||
import MainCrebitChart from "../components/dashboard/MainCrebitChart";
|
||||
import MainDebitChart from "../components/dashboard/MainDebitChart";
|
||||
import MainPiggyList from "../components/dashboard/MainPiggyList";
|
||||
/**
|
||||
* First we will load Axios via bootstrap.js
|
||||
* jquery and bootstrap-sass preloaded in app.js
|
||||
@@ -12,6 +19,14 @@ require('../bootstrap');
|
||||
// components as an example
|
||||
Vue.component('dashboard', Dashboard);
|
||||
Vue.component('top-boxes', TopBoxes);
|
||||
Vue.component('main-account', MainAccount);
|
||||
Vue.component('main-account-list', MainAccountList);
|
||||
Vue.component('main-bills-chart', MainBillsChart);
|
||||
Vue.component('main-budget-chart', MainBudgetChart);
|
||||
Vue.component('main-category-chart', MainCategoryChart);
|
||||
Vue.component('main-credit-chart', MainCrebitChart);
|
||||
Vue.component('main-debit-chart', MainDebitChart);
|
||||
Vue.component('main-piggy-list', MainPiggyList);
|
||||
|
||||
// i18n
|
||||
let i18n = require('../i18n');
|
||||
|
||||
Reference in New Issue
Block a user