summaryrefslogtreecommitdiff
path: root/src/components/Global/PageSection.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/PageSection.vue')
-rw-r--r--src/components/Global/PageSection.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/Global/PageSection.vue b/src/components/Global/PageSection.vue
index 678fd31d..03040b29 100644
--- a/src/components/Global/PageSection.vue
+++ b/src/components/Global/PageSection.vue
@@ -8,7 +8,12 @@
<script>
export default {
name: 'PageSection',
- props: ['sectionTitle']
+ props: {
+ sectionTitle: {
+ type: String,
+ required: true
+ }
+ }
};
</script>