This commit is contained in:
2023-06-09 14:29:13 +02:00
parent 18c4c331f2
commit 78b3ec468b
12 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -260,7 +260,7 @@ export default {
// render (h) { // render (h) {
// // console.log('EdText render()') // // console.log('EdText render()')
// if (!this.template) { // if (!this.template) {
// return h('span', 'Loading ...') // return h('span', 'Chargement ...')
// } else { // } else {
// return this.template.render.call(this) // return this.template.render.call(this)
// } // }
+2 -2
View File
@@ -1,9 +1,9 @@
<template> <template>
<nav id="header-menu"> <nav id="header-menu">
<!-- <span v-if="!corpusLoaded" class="loading">Loading ...</span> --> <!-- <span v-if="!corpusLoaded" class="loading">Chargement ...</span> -->
<ul> <ul>
<li> <li>
<span v-if="!corpusLoaded" class="loading">Loading ...</span> <span v-if="!corpusLoaded" class="loading">Chargement ...</span>
<router-link v-else to="/corpus">Corpus</router-link> <router-link v-else to="/corpus">Corpus</router-link>
</li> </li>
<li class="has-submenu" :class="{ opened: indexOpened }"> <li class="has-submenu" :class="{ opened: indexOpened }">
+1 -1
View File
@@ -1,7 +1,7 @@
<template> <template>
<MainContentLayout id="biblio"> <MainContentLayout id="biblio">
<template v-if="!content" #header> <template v-if="!content" #header>
<span class="loading">Loading ...</span> <span class="loading">Chargement ...</span>
</template> </template>
<template #header> <template #header>
<h1> <h1>
+2 -2
View File
@@ -7,7 +7,7 @@
> >
<!-- <transition name="fade" mode="out-in"> --> <!-- <transition name="fade" mode="out-in"> -->
<template v-if="!corpusLoaded" #header> <template v-if="!corpusLoaded" #header>
<span class="loading">Loading ...</span> <span class="loading">Chargement ...</span>
</template> </template>
<template v-else #header> <template v-else #header>
<h1> <h1>
@@ -44,7 +44,7 @@
@click.prevent="onClickTooltip" @click.prevent="onClickTooltip"
@keyup.enter="onClickTooltip" @keyup.enter="onClickTooltip"
> >
<span v-if="indexitem == 'loading'" class="loading">Loading ...</span> <span v-if="indexitem == 'loading'" class="loading">Chargement ...</span>
<template v-if="indexitem !== 'loading'"> <template v-if="indexitem !== 'loading'">
<h1 v-html="indexitem.title" /> <h1 v-html="indexitem.title" />
<p v-if="indexitem.birthDate" class="birthdeath"> <p v-if="indexitem.birthDate" class="birthdeath">
+1 -1
View File
@@ -2,7 +2,7 @@
<MainContentLayout id="index-locorum" class="index"> <MainContentLayout id="index-locorum" class="index">
<template v-slot:header> <template v-slot:header>
<h1>Lieux</h1> <h1>Lieux</h1>
<span v-if="!items.length" class="loading">Loading ...</span> <span v-if="!items.length" class="loading">Chargement ...</span>
</template> </template>
<ul v-if="items.length" class="item-list"> <ul v-if="items.length" class="item-list">
+1 -1
View File
@@ -2,7 +2,7 @@
<MainContentLayout id="index-nominum" class="index"> <MainContentLayout id="index-nominum" class="index">
<template v-slot:header> <template v-slot:header>
<h1>Personnes</h1> <h1>Personnes</h1>
<span v-if="!items.length" class="loading">Loading ...</span> <span v-if="!items.length" class="loading">Chargement ...</span>
</template> </template>
<ul v-if="items.length" class="item-list"> <ul v-if="items.length" class="item-list">
+1 -1
View File
@@ -2,7 +2,7 @@
<MainContentLayout id="index-operum" class="index"> <MainContentLayout id="index-operum" class="index">
<template v-slot:header> <template v-slot:header>
<h1>Œuvres</h1> <h1>Œuvres</h1>
<span v-if="!items.length" class="loading">Loading ...</span> <span v-if="!items.length" class="loading">Chargement ...</span>
</template> </template>
<ul v-if="items.length" class="item-list"> <ul v-if="items.length" class="item-list">
+1 -1
View File
@@ -2,7 +2,7 @@
<MainContentLayout id="list-corpus"> <MainContentLayout id="list-corpus">
<template v-slot:header> <template v-slot:header>
<h1>Corpus</h1> <h1>Corpus</h1>
<span v-if="!editionslist.length" class="loading">Loading ...</span> <span v-if="!editionslist.length" class="loading">Chargement ...</span>
</template> </template>
<ul v-if="editionslist.length" class="item-list"> <ul v-if="editionslist.length" class="item-list">
+1 -1
View File
@@ -1,7 +1,7 @@
<template> <template>
<MainContentLayout id="locorum" class="index-item"> <MainContentLayout id="locorum" class="index-item">
<template v-if="!content" v-slot:header> <template v-if="!content" v-slot:header>
<span class="loading">Loading ...</span> <span class="loading">Chargement ...</span>
</template> </template>
<template v-if="content" v-slot:header> <template v-if="content" v-slot:header>
+1 -1
View File
@@ -1,7 +1,7 @@
<template> <template>
<MainContentLayout id="nominum" class="index-item"> <MainContentLayout id="nominum" class="index-item">
<template v-if="!content" v-slot:header> <template v-if="!content" v-slot:header>
<span class="loading">Loading ...</span> <span class="loading">Chargement ...</span>
</template> </template>
<template v-if="content" v-slot:header> <template v-if="content" v-slot:header>
+1 -1
View File
@@ -1,7 +1,7 @@
<template> <template>
<MainContentLayout id="operum" class="index-item"> <MainContentLayout id="operum" class="index-item">
<template v-if="!content" v-slot:header> <template v-if="!content" v-slot:header>
<span class="loading">Loading ...</span> <span class="loading">Chargement ...</span>
</template> </template>
<template v-if="content" v-slot:header> <template v-if="content" v-slot:header>
+1 -1
View File
@@ -1,7 +1,7 @@
<template> <template>
<MainContentLayout id="not-found" class=""> <MainContentLayout id="not-found" class="">
<template v-slot:header> <template v-slot:header>
<span v-if="!page" class="loading">Loading ...</span> <span v-if="!page" class="loading">Chargement ...</span>
<h1 v-else>{{ page.title }}</h1> <h1 v-else>{{ page.title }}</h1>
</template> </template>