| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 | <template>  <MainContentLayout id="list-corpus">    <template v-slot:header>      <h1>Corpus</h1>      <span v-if="!editionslist.length" class="loading">Chargement ...</span>    </template>    <ul v-if="editionslist.length" class="item-list">      <li v-for="(corpus,index) in editionslist" :key="index">        <header>          <h2>{{ corpus.author.title }}</h2>          <h3>{{ corpus.author.date }}</h3>          <h4 class="editions-quantity">            {{ corpus.author.editionsQuantity.quantity }} {{ corpus.author.editionsQuantity.unit }}          </h4>          <section v-if="corpus.author.note" class="notice" v-html="corpus.author.note" />        </header>        <section class="texts">          <h4 class="texts-quantity">            {{ corpus.author.textsQuantity.quantity }}            {{ corpus.author.textsQuantity.unit }} :          </h4>          <ul class="texts-list">            <li v-for="text in corpus.editions.content" :key="text.uuid">              <h3>                <a                  class="title"                  :href="text.url"                  :uuid="text.uuid"                  @click.prevent="onclick"                  @keyup.enter="onclick"                  v-html="text.title"                />              </h3>              <p                class="biblio"                v-html="text.biblio.description"              />            </li>          </ul>        </section>        <!-- <CorpusItem :item="item" /> -->      </li>    </ul>    <template v-slot:nav />  </MainContentLayout></template><script>// import CorpusItem from '../components/Content/CorpusItem'import MainContentLayout from '../components/Layouts/MainContentLayout'import { mapState, mapActions } from 'vuex'export default {  name: 'ListCorpus',  metaInfo: {    title: 'Corpus'  },  components: {    // CorpusItem,    MainContentLayout  },  data: () => ({    // editionslist: []  }),  computed: {    ...mapState({      editionslist: state => state.Corpus.editionslist    })  },  created () {    if (!this.editionslist.length) {      this.getCorpuses()    }  },  methods: {    ...mapActions({      getCorpuses: 'Corpus/getCorpuses'    }),    onclick (e) {      console.log('clicked on editon', e)      this.$router.push({        name: `edition`,        params: { id: e.target.getAttribute('uuid') }      })    }  }}</script><style lang="scss" scoped></style>
 |