chore: Fix Eslint warnings (#3654)

* Fix all the eslint warnings

* Revert the schema
This commit is contained in:
Muhsin Keloth 2021-12-27 13:49:31 +05:30 committed by GitHub
parent 28da30f7e4
commit 9606abe251
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 63 additions and 50 deletions

View file

@ -18,12 +18,12 @@
<script>
export default {
props: {
heading: String,
point: [Number, String],
index: Number,
desc: String,
heading: { type: String, default: '' },
point: { type: [Number, String], default: '' },
index: { type: Number, default: null },
desc: { type: String, default: '' },
selected: Boolean,
onClick: Function,
onClick: { type: Function, default: () => {} },
},
};
</script>