12345678910111213141516171819202122232425 |
- <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>
|