SpendTable Vue component

This commit is contained in:
Andrew Croce
2018-09-17 15:06:38 -04:00
parent bd0cf00a40
commit 1715ac99b9
2 changed files with 48 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ import NewProject from './components/forms/new_project'
import Modal from './mixins/modal'
import selector from './components/selector'
import BudgetChart from './components/charts/budget_chart'
import SpendTable from './components/tables/spend_table'
Vue.use(VTooltip)
@@ -33,7 +34,8 @@ const app = new Vue({
financial,
NewProject,
selector,
BudgetChart
BudgetChart,
SpendTable
},
mounted: function() {
const modalOpen = document.querySelector("#modalOpen")