uniapp中引入公共组件

1、在目录component中写了一个组件
Footer.vue

<template>
    <view class="footer">
    </view>
</template>

 

2、在index.vue中引入Footer组件 并在实例中注册

import Footer from '../components/footer.vue' 
components:{  
     Footer
}

页面中引用

<view class="content">      
    <view class="icon">
    </view>
    <Footer></Footer>
</view>

 

posted @ 2020-07-27 09:36  奔向太阳的向日葵  阅读(10033)  评论(0编辑  收藏  举报