mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
32 lines
464 B
Vue
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>
|