1# Page section
2
3The `<page-section>` component will render semantic HTML. By adding a
4`:section-title` prop to the `<page-section>` component, the localized text
5string will be rendered in an `h2` header element.
6
7```vue
8// Example: `src/views/AccessControl/Ldap/Ldap.vue`
9    <page-section :section-title="$t('pageLdap.settings')">
10```
11
12[View the page section component source code](https://github.com/openbmc/webui-vue/blob/master/src/components/Global/PageSection.vue).
13