]> Softwares of Agnibho - medscript-lite.git/blob - src/main.js
Updated for mpaz 0.3
[medscript-lite.git] / src / main.js
1 /*
2 MedScript Lite
3 Copyright (C) 2023 Dr. Agnibho Mondal
4 This file is part of MedScript Lite.
5 MedScript Lite 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.
6 MedScript Lite 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.
7 You should have received a copy of the GNU General Public License along with MedScript Lite. If not, see <https://www.gnu.org/licenses/>.
8 */
9
10 import { createApp } from 'vue'
11 import App from './App.vue'
12
13 createApp(App).mount('#app')