You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
593 B
28 lines
593 B
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
<service-worker-update-popup />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { AbpModule } from '@/store/modules/abp'
|
|
import { Component, Vue } from 'vue-property-decorator'
|
|
import ServiceWorkerUpdatePopup from '@/pwa/components/ServiceWorkerUpdatePopup.vue'
|
|
|
|
@Component({
|
|
name: 'App',
|
|
components: {
|
|
ServiceWorkerUpdatePopup
|
|
}
|
|
})
|
|
export default class extends Vue {
|
|
created() {
|
|
this.initializeAbpConfiguration()
|
|
}
|
|
|
|
private async initializeAbpConfiguration() {
|
|
await AbpModule.LoadAbpConfiguration()
|
|
}
|
|
}
|
|
</script>
|
|
|