File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import LoaderComponent from './components/Loader.vue';
13
13
import '../styles/fullscreen-message.scss' ;
14
14
15
15
/* Core CSS required for Ionic components to work properly */
16
- // import '@ionic/vue/css/core.css';
16
+ import '@ionic/vue/css/core.css' ;
17
17
18
18
/* Basic CSS for apps built with Ionic */
19
19
import '@ionic/vue/css/normalize.css' ;
@@ -22,19 +22,24 @@ import '@ionic/vue/css/typography.css';
22
22
23
23
/* Optional CSS utils that can be commented out */
24
24
import '@ionic/vue/css/padding.css' ;
25
- // // import '@ionic/vue/css/float-elements.css';
26
25
import '@ionic/vue/css/text-alignment.css' ;
27
26
import '@ionic/vue/css/text-transformation.css' ;
28
27
import '@ionic/vue/css/flex-utils.css' ;
29
28
import '@ionic/vue/css/display.css' ;
29
+ import '../styles/ionic.scss' ;
30
30
31
31
registerModals ( ) ;
32
32
const app = createApp ( App ) ;
33
- app . use ( IonicVue ) ;
33
+ app . use ( IonicVue , {
34
+ mode : 'ios' ,
35
+ } ) ;
34
36
app . use ( i18n ) ;
35
37
app . use ( store ) ;
36
38
app . use ( router ) ;
37
39
app . component ( 'Loader' , LoaderComponent ) ;
38
- app . mount ( '#app' ) ;
40
+ // app.mount('#app');
39
41
42
+ router . isReady ( ) . then ( ( ) => {
43
+ app . mount ( '#app' ) ;
44
+ } ) ;
40
45
Logger . init ( { app } ) ;
You can’t perform that action at this time.
0 commit comments