Fixed default actor avatar allocation. Fixed lazy loading in actor photos component.

This commit is contained in:
DebaucheryLibrarian
2020-12-27 22:45:38 +01:00
parent f58c07137a
commit ded414577f
6 changed files with 12 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
import { createApp, reactive } from 'vue';
import { createApp } from 'vue';
import dayjs from 'dayjs';
import mitt from 'mitt';
@@ -17,7 +17,7 @@ import Footer from '../components/footer/footer.vue';
import Tooltip from '../components/tooltip/tooltip.vue';
async function init() {
const store = initStore(reactive(router));
const store = initStore(router);
const app = createApp(Container);
const events = mitt();