mirror of
https://github.com/YouHaveTrouble/GuildMaster.git
synced 2026-05-12 06:26:59 +00:00
minor fixes
This commit is contained in:
+5
-5
@@ -4,8 +4,8 @@ import {version} from "../package.json"
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="loading-screen" :class="{disabled: !loading}">
|
<section class="loading-screen" :class="{disabled: !loading}">
|
||||||
<section class="title panel note-paper">
|
<div class="title panel note-paper">
|
||||||
<h1>Guild Master</h1>
|
<h1>Guild Master</h1>
|
||||||
<h3>Adventurer's guild management game</h3>
|
<h3>Adventurer's guild management game</h3>
|
||||||
<small>v{{ version }}</small>
|
<small>v{{ version }}</small>
|
||||||
@@ -16,8 +16,8 @@ import {version} from "../package.json"
|
|||||||
<div></div>
|
<div></div>
|
||||||
</div>
|
</div>
|
||||||
<h3>Loading assets...</h3>
|
<h3>Loading assets...</h3>
|
||||||
</section>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
<header>
|
<header>
|
||||||
<nav>
|
<nav>
|
||||||
<RouterLink :to="{name: 'guild'}">Guild</RouterLink>
|
<RouterLink :to="{name: 'guild'}">Guild</RouterLink>
|
||||||
@@ -262,7 +262,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
// Wait a second to make sure at least most images load in behind the loader
|
// Wait a second to make sure at least most images load in behind the loader
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.loading = false;
|
//this.loading = false;
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
|
||||||
this.gameSaveTask = Number(setInterval(() => {
|
this.gameSaveTask = Number(setInterval(() => {
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@ import { createApp } from 'vue'
|
|||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import router from './router'
|
import router from './router'
|
||||||
|
|
||||||
import './assets/main.scss'
|
import '@/assets/main.scss'
|
||||||
|
|
||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user