diff options
Diffstat (limited to 'src/site/components/loading')
| -rw-r--r-- | src/site/components/loading/CubeShadow.vue | 14 | ||||
| -rw-r--r-- | src/site/components/loading/Origami.vue | 10 | ||||
| -rw-r--r-- | src/site/components/loading/PingPong.vue | 10 | ||||
| -rw-r--r-- | src/site/components/loading/RotateSquare.vue | 10 |
4 files changed, 22 insertions, 22 deletions
diff --git a/src/site/components/loading/CubeShadow.vue b/src/site/components/loading/CubeShadow.vue index bbfdb52..71b5da5 100644 --- a/src/site/components/loading/CubeShadow.vue +++ b/src/site/components/loading/CubeShadow.vue @@ -9,16 +9,16 @@ export default { props: { size: { type: String, - default: '60px', + default: '60px' }, background: { type: String, - default: '#9C27B0', + default: '#9C27B0' }, duration: { type: String, - default: '1.8s', - }, + default: '1.8s' + } }, computed: { styles() { @@ -26,10 +26,10 @@ export default { width: this.size, height: this.size, backgroundColor: this.background, - animationDuration: this.duration, + animationDuration: this.duration }; - }, - }, + } + } }; </script> diff --git a/src/site/components/loading/Origami.vue b/src/site/components/loading/Origami.vue index cd1c087..59c5d8f 100644 --- a/src/site/components/loading/Origami.vue +++ b/src/site/components/loading/Origami.vue @@ -20,8 +20,8 @@ export default { props: { size: { type: String, - default: '40px', - }, + default: '40px' + } }, computed: { innerStyles() { @@ -31,10 +31,10 @@ export default { styles() { return { width: this.size, - height: this.size, + height: this.size }; - }, - }, + } + } }; </script> diff --git a/src/site/components/loading/PingPong.vue b/src/site/components/loading/PingPong.vue index d562e9f..c04ae72 100644 --- a/src/site/components/loading/PingPong.vue +++ b/src/site/components/loading/PingPong.vue @@ -19,8 +19,8 @@ export default { props: { size: { type: String, - default: '60px', - }, + default: '60px' + } }, computed: { innerStyles() { @@ -30,10 +30,10 @@ export default { styles() { return { width: this.size, - height: this.size, + height: this.size }; - }, - }, + } + } }; </script> diff --git a/src/site/components/loading/RotateSquare.vue b/src/site/components/loading/RotateSquare.vue index 089e01a..7bc9bb0 100644 --- a/src/site/components/loading/RotateSquare.vue +++ b/src/site/components/loading/RotateSquare.vue @@ -9,18 +9,18 @@ export default { props: { size: { type: String, - default: '40px', - }, + default: '40px' + } }, computed: { styles() { return { width: this.size, height: this.size, - display: 'inline-block', + display: 'inline-block' }; - }, - }, + } + } }; </script> |