materialdesignicons, colors, more layout

This commit is contained in:
2019-07-23 23:55:25 +02:00
parent 5985796166
commit 67515882c3
44 changed files with 30945 additions and 46 deletions
+3 -1
View File
@@ -6,13 +6,15 @@
<h1>Nominum</h1>
</div>
</template>
<script>
export default {
name: 'Nominum',
data: () => ({
})
}
</script>
<style lang="scss" scoped>
</style>
+26 -1
View File
@@ -4,14 +4,39 @@
class="full-width"
>
<h1>Operum</h1>
<span v-if="!items.length">Loading ...</span>
</div>
</template>
<script>
import { REST } from 'api/rest-axios'
export default {
name: 'Operum',
data: () => ({
items: []
})
}),
beforeCreate () {
REST.get(`/indexOperum`, {})
.then(({ data }) => {
console.log('operum 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 operum', error)
Promise.reject(error)
})
}
}
</script>
<style lang="scss" scoped>