Files
FirstUI-vue/pages/component/layout/section/section.vue
2023-08-17 21:28:49 +08:00

37 lines
1.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号 18 6 140 7 2 549身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<fui-section title="Section" descr="Section 标题栏,主要用于文章、列表详情等标题展示。" :margin-top="52"></fui-section>
<view class="fui-page__bd">
<fui-section title="装饰线条" isLine margin-top="64"></fui-section>
<fui-section title="线条宽度/颜色调整" line-width="8rpx" line-color="#FF2B2B" isLine margin-top="96"></fui-section>
<fui-section title="标题/无线条/带描述" descr="我是描述文本~" margin-top="96"></fui-section>
<fui-section :padding="['32rpx','32rpx']" background="#fff" title="设置背景" isLine
margin-top="96"></fui-section>
<fui-section title="插槽使用/加图标" margin-top="64">
<template v-slot:right>
<image class="fui-vip__icon" src="/static/images/index/light/icon_member_3x.png"></image>
</template>
</fui-section>
<fui-section title="线条渐变色/调整字体大小" line-width="3px" size="48" isLine
line-color="linear-gradient(to bottom , #FFB703, #FF416C)" margin-top="96"></fui-section>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>