<template> <view class="content"> <footers v-if="isfootflag" :footerindex="footerindex"></footers> </view> </template> <script> import footers from '@/components/footer/footer.vue' export default { components:{footers}, data(){ return{ footerindex:'home', isfootflag:true, } }, onLoad: function() { } } </script> <style> </style>