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