mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-12 01:03:09 +00:00
30 lines
514 B
Vue
30 lines
514 B
Vue
<template>
|
|
<section class="single-page-section">
|
|
<h2 class="md-headline"><md-icon>keyboard_arrow_right</md-icon> {{ label }}</h2>
|
|
|
|
<slot></slot>
|
|
</section>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import '../../../src/core/stylesheets/variables.scss';
|
|
|
|
.single-page-section {
|
|
+ .single-page-section {
|
|
margin-top: 48px;
|
|
}
|
|
|
|
.md-headline {
|
|
.md-icon {
|
|
height: 32px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['label']
|
|
};
|
|
</script>
|