mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-19 01:31:20 +00:00
Progress and updates for new layout.
This commit is contained in:
14
frontend/src/pages/accounts/edit.js
vendored
Normal file
14
frontend/src/pages/accounts/edit.js
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
require('../../bootstrap');
|
||||
|
||||
import Edit from "../../components/accounts/Edit";
|
||||
|
||||
// i18n
|
||||
let i18n = require('../../i18n');
|
||||
|
||||
let props = {};
|
||||
const app = new Vue({
|
||||
i18n,
|
||||
render(createElement) {
|
||||
return createElement(Edit, {props: props});
|
||||
}
|
||||
}).$mount('#accounts_edit');
|
||||
Reference in New Issue
Block a user