added corpus link, added nominum & locorum api request (not working yet)

This commit is contained in:
2019-08-20 17:09:18 +02:00
parent 6a2bb45fb2
commit 5ddfb7d286
8 changed files with 113 additions and 5 deletions
+27 -1
View File
@@ -4,15 +4,41 @@
class="full-width"
>
<h1>Nominum</h1>
<span v-if="!items.length">Loading ...</span>
</div>
</template>
<script>
import { REST } from 'api/rest-axios'
export default {
name: 'Nominum',
data: () => ({
})
items: []
}),
beforeCreate () {
// items/gdpLeMaire1685T01BodyFr01.003.016
// texts/gdpSauval1724
REST.get(`/indexNominum`, {})
.then(({ data }) => {
console.log('nominum REST: data', data)
// if(data.length){
// commit('setItems',data)
// // console.log('items.length', this.items.length);
// if(state.infiniteLoadingState)
// state.infiniteLoadingState.loaded()
// }else{
// if(state.infiniteLoadingState)
// state.infiniteLoadingState.complete()
// }
})
.catch((error) => {
console.warn('Issue with nominum', error)
Promise.reject(error)
})
}
}
</script>