aboutsummaryrefslogtreecommitdiff
path: root/src/site/components/loading/PingPong.vue
diff options
context:
space:
mode:
authorZephyrrus <[email protected]>2020-12-24 10:40:50 +0200
committerZephyrrus <[email protected]>2020-12-24 10:40:50 +0200
commit90001c2df56d58e69fd199a518ae7f3e4ed327fc (patch)
treeac601537b5f464a1b03b084e5139e460f42e3473 /src/site/components/loading/PingPong.vue
parentchore: update lock files (diff)
downloadhost.fuwn.me-90001c2df56d58e69fd199a518ae7f3e4ed327fc.tar.xz
host.fuwn.me-90001c2df56d58e69fd199a518ae7f3e4ed327fc.zip
chore: remove trailing commas
Diffstat (limited to 'src/site/components/loading/PingPong.vue')
-rw-r--r--src/site/components/loading/PingPong.vue10
1 files changed, 5 insertions, 5 deletions
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>