mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
33 lines
537 B
Vue
33 lines
537 B
Vue
<template>
|
|
<div
|
|
class="van-doc-container van-doc-row"
|
|
:class="{ 'van-doc-container--with-simulator': hasSimulator }"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'VanDocContainer',
|
|
|
|
props: {
|
|
hasSimulator: Boolean,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import '../../common/style/var';
|
|
|
|
.van-doc-container {
|
|
box-sizing: border-box;
|
|
padding-left: @van-doc-nav-width;
|
|
overflow: hidden;
|
|
|
|
&--with-simulator {
|
|
padding-right: @van-doc-simulator-width + @van-doc-padding;
|
|
}
|
|
}
|
|
</style>
|