File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import 'vite/modulepreload-polyfill'
1212
1313const pinia = createPinia ( )
1414const app = createApp ( AppstoreApp )
15+ app . config . idPrefix = 'appstore'
1516app . use ( pinia )
1617app . use ( router )
1718app . mount ( '#content' )
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import { defineAsyncComponent } from 'vue'
1111const appstoreEnabled = loadState < boolean > ( 'appstore' , 'appstoreEnabled' , true )
1212
1313// Dynamic loading
14- const AppstoreDiscover = defineAsyncComponent ( ( ) => import ( '../views/AppstoreDiscover.vue' ) )
15- const AppstoreManage = defineAsyncComponent ( ( ) => import ( '../views/AppstoreManage.vue' ) )
16- const AppstoreBundles = defineAsyncComponent ( ( ) => import ( '../views/AppstoreBundles.vue' ) )
14+ const AppstoreDiscover = ( ) => import ( '../views/AppstoreDiscover.vue' )
15+ const AppstoreManage = ( ) => import ( '../views/AppstoreManage.vue' )
16+ const AppstoreBundles = ( ) => import ( '../views/AppstoreBundles.vue' )
1717
1818const routes : RouteRecordRaw [ ] = [
1919 {
You can’t perform that action at this time.
0 commit comments