feat: 首次提交

This commit is contained in:
peerless_hero
2023-08-17 21:28:49 +08:00
parent 36f80fb971
commit ec1e5e16cd
571 changed files with 95322 additions and 0 deletions

View File

@ -0,0 +1,49 @@
<!--本文件由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>