fonteva-design-guide
Version:
## Dev, Build and Test
27 lines (24 loc) • 761 B
HTML
<template>
<div class={classes}>
<div class="pfm-layout__header">
<slot name="header"></slot>
</div>
<div class="pfm-layout__subheader">
<slot name="subheader"></slot>
</div>
<div class="pfm-layout__content">
<div class="pfm-layout__left">
<slot name="left"></slot>
</div>
<div class="pfm-layout__content-body">
<slot name="main"></slot>
</div>
<div class="pfm-layout__right">
<slot name="right"></slot>
</div>
</div>
<div class="pfm-layout__footer">
<slot name="footer"></slot>
</div>
</div>
</template>