view
?是?uni-app?中最基本的组件之一,用于在页面中创建一个视图容器。它类似于 HTML 中的?div
?标签,可以用来包裹其他组件或者作为布局容器使用
?text
?用于显示文本内容,类似于 HTML 中的?span
?标签。可以设置字体大小、颜色、样式等属性。
示例:
<text class="title">Welcome to uni-app!</text>
?image
?用于显示图片,可以设置图片的路径、宽度、高度等属性。
示例:
<image src="/static/logo.png" class="logo"></image>
button
用于创建一个按钮,可以设置按钮的样式、文本内容以及点击事件。
示例:
<button class="btn" @click="handleClick">Click me!</button>
input
?用于创建一个输入框,可以接收用户的输入。可以设置输入框的类型、默认值、占位符等属性。
示例:
<input type="text" class="input" placeholder="请输入用户名"></input>
swiper
?用于创建一个轮播图组件,可以展示多张图片或者其他内容。可以设置轮播图的切换效果、自动播放等属性。
示例:
<swiper class="swiper" autoplay>
<swiper-item>
<image src="/static/banner1.png"></image>
</swiper-item>
<swiper-item>
<image src="/static/banner2.png"></image>
</swiper-item>
</swiper>
list
?用于创建一个列表,可以展示多个数据项。可以设置列表的样式、滚动方向等属性。
<list class="list">
<list-item v-for="item in listData" :key="item.id">
<text>{{ item.title }}</text>
</list-item>
</list>
原创作者:吴小糖
创作时间:2023.12.26