This commit is contained in:
@@ -260,7 +260,7 @@ export default {
|
||||
// render (h) {
|
||||
// // console.log('EdText render()')
|
||||
// if (!this.template) {
|
||||
// return h('span', 'Loading ...')
|
||||
// return h('span', 'Chargement ...')
|
||||
// } else {
|
||||
// return this.template.render.call(this)
|
||||
// }
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<template>
|
||||
<nav id="header-menu">
|
||||
<!-- <span v-if="!corpusLoaded" class="loading">Loading ...</span> -->
|
||||
<!-- <span v-if="!corpusLoaded" class="loading">Chargement ...</span> -->
|
||||
<ul>
|
||||
<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>
|
||||
</li>
|
||||
<li class="has-submenu" :class="{ opened: indexOpened }">
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<MainContentLayout id="biblio">
|
||||
<template v-if="!content" #header>
|
||||
<span class="loading">Loading ...</span>
|
||||
<span class="loading">Chargement ...</span>
|
||||
</template>
|
||||
<template #header>
|
||||
<h1>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
>
|
||||
<!-- <transition name="fade" mode="out-in"> -->
|
||||
<template v-if="!corpusLoaded" #header>
|
||||
<span class="loading">Loading ...</span>
|
||||
<span class="loading">Chargement ...</span>
|
||||
</template>
|
||||
<template v-else #header>
|
||||
<h1>
|
||||
@@ -44,7 +44,7 @@
|
||||
@click.prevent="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'">
|
||||
<h1 v-html="indexitem.title" />
|
||||
<p v-if="indexitem.birthDate" class="birthdeath">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<MainContentLayout id="index-locorum" class="index">
|
||||
<template v-slot:header>
|
||||
<h1>Lieux</h1>
|
||||
<span v-if="!items.length" class="loading">Loading ...</span>
|
||||
<span v-if="!items.length" class="loading">Chargement ...</span>
|
||||
</template>
|
||||
|
||||
<ul v-if="items.length" class="item-list">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<MainContentLayout id="index-nominum" class="index">
|
||||
<template v-slot:header>
|
||||
<h1>Personnes</h1>
|
||||
<span v-if="!items.length" class="loading">Loading ...</span>
|
||||
<span v-if="!items.length" class="loading">Chargement ...</span>
|
||||
</template>
|
||||
|
||||
<ul v-if="items.length" class="item-list">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<MainContentLayout id="index-operum" class="index">
|
||||
<template v-slot:header>
|
||||
<h1>Œuvres</h1>
|
||||
<span v-if="!items.length" class="loading">Loading ...</span>
|
||||
<span v-if="!items.length" class="loading">Chargement ...</span>
|
||||
</template>
|
||||
|
||||
<ul v-if="items.length" class="item-list">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<MainContentLayout id="list-corpus">
|
||||
<template v-slot:header>
|
||||
<h1>Corpus</h1>
|
||||
<span v-if="!editionslist.length" class="loading">Loading ...</span>
|
||||
<span v-if="!editionslist.length" class="loading">Chargement ...</span>
|
||||
</template>
|
||||
|
||||
<ul v-if="editionslist.length" class="item-list">
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<MainContentLayout id="locorum" class="index-item">
|
||||
<template v-if="!content" v-slot:header>
|
||||
<span class="loading">Loading ...</span>
|
||||
<span class="loading">Chargement ...</span>
|
||||
</template>
|
||||
|
||||
<template v-if="content" v-slot:header>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<MainContentLayout id="nominum" class="index-item">
|
||||
<template v-if="!content" v-slot:header>
|
||||
<span class="loading">Loading ...</span>
|
||||
<span class="loading">Chargement ...</span>
|
||||
</template>
|
||||
|
||||
<template v-if="content" v-slot:header>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<MainContentLayout id="operum" class="index-item">
|
||||
<template v-if="!content" v-slot:header>
|
||||
<span class="loading">Loading ...</span>
|
||||
<span class="loading">Chargement ...</span>
|
||||
</template>
|
||||
|
||||
<template v-if="content" v-slot:header>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<MainContentLayout id="not-found" class="">
|
||||
<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>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user