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

49 lines
1.5 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授权予新疆天衡创新研究院有限公司手机号 1861 4 07 2 54 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<view class="fui-page__hd">
<view class="fui-page__title">Divider</view>
<view class="fui-page__desc">Divider 分割线可自定义线条宽度颜色等</view>
</view>
<view class="fui-page__bd">
<fui-divider text="没有更多了"></fui-divider>
<fui-divider dividerColor="#465CFF" text="没有更多了"></fui-divider>
<fui-divider dividerColor="#FFB703" color="#FFB703" text="没有更多了"></fui-divider>
<fui-divider dividerColor="#09BE4F" color="#09BE4F" width="100%" text="没有更多了"></fui-divider>
<fui-divider dividerColor="linear-gradient(to right,#eee,#ccc,#ccc,#eee)" text="没有更多了"></fui-divider>
<fui-divider text="已加载完全部数据"></fui-divider>
<fui-divider>
<view class="fui-flex__center">
<fui-icon name="like" color="#FF2B2B" :size="40"></fui-icon>
<text class="fui-text">猜你喜欢</text>
</view>
</fui-divider>
<fui-divider>
<view class="fui-flex__center">
<fui-icon name="fabulous" color="#FFB703" :size="40"></fui-icon>
<text class="fui-text">好物推荐</text>
</view>
</fui-divider>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.fui-text {
font-size: 24rpx;
padding-left: 8rpx;
}
</style>