WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2023-03-23 ae116cf6f8b1bd8cee09ce25e2630ab1ad08d22d
layout/h5Page/CContent.vue
@@ -5,12 +5,31 @@
 
<template>
    <view class="c-content">
        <slot />
        <view
            class="c-content-inner"
            v-if="scroll==='off'"
        >
            <slot />
        </view>
        <scroll-view
            class="c-content-scroll"
            v-if="scroll==='on'"
            :scrollY="true"
        >
            <slot />
        </scroll-view>
    </view>
</template>
<script>
export default {
    name: 'CContent',
    props: {
        // 开启滚动,off / on
        scroll: {
            type: String,
            default: 'off',
        },
    },
};
</script>