uni-app使用easycom自动引入组件

2023-07-24 21:15:23 浏览数 (1)

之前老版本写页面步骤需要两步,如果组件多会导致一堆import:

1、在 script 中引用组件

代码语言:javascript复制
import uniBadge from "@/components/uni-badge/uni-badge.vue"
export default {
    components: {uniBadge}
}

2、在 template 中使用组件

代码语言:javascript复制
<uni-badge text="1"></uni-badge>
<uni-badge text="2" type="purple" @click="bindClick"></uni-badge>
<uni-badge text="3" type="primary" :inverted="true"></uni-badge>

新版本写页面步骤只需要一步:

1、在 template 中使用组件

代码语言:javascript复制
<uni-badge text="1"></uni-badge>
<uni-badge text="2" type="purple" @click="bindClick"></uni-badge>
<uni-badge text="3" type="primary" :inverted="true"></uni-badge>

注意需要在pages.json中增加如下配置,下图是uni-ui的规则,也可以自定义别的规则。

代码语言:javascript复制
"easycom": {
  "uni-(.*)": "@/components/uni-$1/uni-$1.vue"
}

0 人点赞