style: add missing trailing commas (#9387)

This commit is contained in:
Kagami Sascha Rosylight
2022-12-22 16:01:59 +09:00
committed by GitHub
parent 9314ceae36
commit f1fd1d2585
79 changed files with 320 additions and 320 deletions

View File

@@ -32,12 +32,12 @@ export default defineComponent({
expanded: {
type: Boolean,
required: false,
default: true
default: true,
},
persistKey: {
type: String,
required: false,
default: null
default: null,
},
},
data() {
@@ -51,7 +51,7 @@ export default defineComponent({
if (this.persistKey) {
localStorage.setItem(localStoragePrefix + this.persistKey, this.showBody ? 't' : 'f');
}
}
},
},
mounted() {
function getParentBg(el: Element | null): string {
@@ -91,7 +91,7 @@ export default defineComponent({
afterLeave(el) {
el.style.height = null;
},
}
},
});
</script>