mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
89 lines
3.7 KiB
JavaScript
89 lines
3.7 KiB
JavaScript
/*
|
|
* app.js
|
|
* Copyright (c) 2019 thegrumpydictator@gmail.com
|
|
*
|
|
* This file is part of Firefly III.
|
|
*
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import CustomAttachments from "./components/transactions/CustomAttachments";
|
|
|
|
/**
|
|
* First we will load all of this project's JavaScript dependencies which
|
|
* includes Vue and other libraries. It is a great starting point when
|
|
* building robust, powerful web applications using Vue and Laravel.
|
|
*/
|
|
|
|
require('./bootstrap');
|
|
window.Vue = require('vue');
|
|
import * as uiv from 'uiv';
|
|
|
|
Vue.use(uiv);
|
|
|
|
import CreateTransaction from './components/transactions/CreateTransaction';
|
|
import EditTransaction from './components/transactions/EditTransaction';
|
|
import Clients from './components/passport/Clients';
|
|
import AuthorizedClients from "./components/passport/AuthorizedClients";
|
|
import PersonalAccessTokens from "./components/passport/PersonalAccessTokens";
|
|
import Budget from "./components/transactions/Budget";
|
|
import CustomDate from "./components/transactions/CustomDate";
|
|
import CustomString from "./components/transactions/CustomString";
|
|
import CustomTextarea from "./components/transactions/CustomTextarea";
|
|
import StandardDate from "./components/transactions/StandardDate";
|
|
import GroupDescription from "./components/transactions/GroupDescription";
|
|
import TransactionDescription from "./components/transactions/TransactionDescription";
|
|
import CustomTransactionFields from "./components/transactions/CustomTransactionFields";
|
|
import PiggyBank from "./components/transactions/PiggyBank";
|
|
import Tags from "./components/transactions/Tags";
|
|
import Category from "./components/transactions/Category";
|
|
import Amount from "./components/transactions/Amount";
|
|
import ForeignAmountSelect from "./components/transactions/ForeignAmountSelect";
|
|
import TransactionType from "./components/transactions/TransactionType";
|
|
import AccountSelect from "./components/transactions/AccountSelect";
|
|
|
|
// components for create and edit transactions.
|
|
Vue.component('budget', Budget);
|
|
Vue.component('custom-date', CustomDate);
|
|
Vue.component('custom-string', CustomString);
|
|
Vue.component('custom-attachments', CustomAttachments);
|
|
Vue.component('custom-textarea', CustomTextarea);
|
|
Vue.component('standard-date', StandardDate);
|
|
Vue.component('group-description', GroupDescription);
|
|
Vue.component('transaction-description', TransactionDescription);
|
|
|
|
Vue.component('custom-transaction-fields', CustomTransactionFields);
|
|
Vue.component('piggy-bank', PiggyBank);
|
|
Vue.component('tags', Tags);
|
|
Vue.component('category', Category);
|
|
Vue.component('amount', Amount);
|
|
Vue.component('foreign-amount', ForeignAmountSelect);
|
|
Vue.component('transaction-type', TransactionType);
|
|
Vue.component('account-select', AccountSelect);
|
|
|
|
/**
|
|
* Components for OAuth2 tokens.
|
|
*/
|
|
Vue.component('passport-clients', Clients);
|
|
Vue.component('passport-authorized-clients',AuthorizedClients);
|
|
Vue.component('passport-personal-access-tokens', PersonalAccessTokens);
|
|
|
|
Vue.component('create-transaction', CreateTransaction);
|
|
Vue.component('edit-transaction', EditTransaction);
|
|
|
|
|
|
const app = new Vue({
|
|
el: '#app'
|
|
});
|