Initial Smartproc
This commit is contained in:
16
src/main.js
Normal file
16
src/main.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import 'devextreme/dist/css/dx.light.css';
|
||||
import './themes/generated/theme.base.css';
|
||||
import './themes/generated/theme.additional.css';
|
||||
import { createApp } from "vue";
|
||||
import router from "./router";
|
||||
import themes from "devextreme/ui/themes";
|
||||
|
||||
import App from "./App";
|
||||
import appInfo from "./app-info";
|
||||
|
||||
themes.initialized(() => {
|
||||
const app = createApp(App);
|
||||
app.use(router);
|
||||
app.config.globalProperties.$appInfo = appInfo;
|
||||
app.mount('#app');
|
||||
});
|
Reference in New Issue
Block a user