Nuxt/lib/app/components/Loading.vue

32 lines
464 B
Vue
Raw Normal View History

2016-11-07 01:34:58 +00:00
<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>