Nuxt/lib/app/components/Loading.vue
Sébastien Chopin 8ab135af55 Prototype 0.1.0 working
Alpha 0.1.0
2016-11-07 02:34:58 +01:00

32 lines
464 B
Vue

<template>
<p>LOADING...</p>
</template>
<script>
export default {
data () {
return {
duration: <%= loading.duration %>,
loadingColor: '<%= loading.loadingColor %>',
errorColor: '<%= loading.errorColor %>',
}
},
methods: {
start () {},
increase () {},
decrease () {},
set () {},
finish () {},
pause () {},
hide () {},
fail () {}
}
}
</script>
<style scoped>
p {
color: grey;
}
</style>