mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-08 01:42:38 +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>
|