From 5e9c3400c758499d6d0b796ad288ede528835fa9 Mon Sep 17 00:00:00 2001 From: Marco Ambrosini Date: Fri, 13 Sep 2019 18:28:44 +0200 Subject: Create Message component Signed-off-by: Marco Ambrosini --- src/main.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/main.js (limited to 'src/main.js') diff --git a/src/main.js b/src/main.js new file mode 100644 index 000000000..8c1fb7903 --- /dev/null +++ b/src/main.js @@ -0,0 +1,33 @@ +/** + * @copyright Copyright (c) 2018 John Molakvoæ + * + * @author John Molakvoæ + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ +import Vue from 'vue' +import App from './App' + +Vue.prototype.t = t +Vue.prototype.n = n +Vue.prototype.OC = OC +Vue.prototype.OCA = OCA + +export default new Vue({ + el: '#content', + render: h => h(App) +}) -- cgit v1.2.3