index.vue 384 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="content">
  3. <footers v-if="isfootflag" :footerindex="footerindex"></footers>
  4. </view>
  5. </template>
  6. <script>
  7. import footers from '@/components/footer/footer.vue'
  8. export default {
  9. components:{footers},
  10. data(){
  11. return{
  12. footerindex:'home',
  13. isfootflag:true,
  14. }
  15. },
  16. onLoad: function() {
  17. }
  18. }
  19. </script>
  20. <style>
  21. </style>