1.新建目录components
2.新建组件
3.在组件中写一些样式
<template>
<view>
<view class="item">myitem自定义组件</view>
</view>
</template>
<script>
export default {
name:"myitem",
data() {
return {
};
}
}
</script>
<style lang="scss">
.item {
width: 200rpx;
height: 200rpx;
background: orange;
color: yellow;
}
</style>
4.调用自定义组件
无需手动导入,可以直接进行使用
5.运行完成