Great big ESLint

This commit is contained in:
Joel Collins 2019-11-11 16:33:43 +00:00
parent 051eabbdc3
commit ebcb938da1
48 changed files with 3890 additions and 2536 deletions

View file

@ -6,14 +6,23 @@
<script>
export default {
name: 'htmlBlock',
name: "HtmlBlock",
props: [
'label',
'name',
'content'
]
}
props: {
label: {
type: String,
required: true
},
name: {
type: String,
required: true
},
content: {
type: String,
required: true
}
}
};
</script>
<style scoped></style>
<style scoped></style>