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>