diff --git a/src/components/misc/Stats.js b/src/components/misc/Stats.js index b71ca3e..5ef9d95 100644 --- a/src/components/misc/Stats.js +++ b/src/components/misc/Stats.js @@ -2,7 +2,7 @@ import Stats from 'stats.js'; export default { props: { - noSetup: { type: Boolean, default: false } + noSetup: { type: Boolean, default: false }, }, emits: ['created'], inject: ['rendererComponent'], @@ -31,7 +31,7 @@ export default { if (this.stats) { this.stats.end(); } - } + }, }, unmounted() { if (this.stats && this.stats.dom) { @@ -43,4 +43,4 @@ export default { render() { return this.$slots.default ? this.$slots.default() : []; }, -}; \ No newline at end of file +};