subweb/src/layouts/FooterView.vue

16 lines
281 B
Vue
Raw Normal View History

2022-07-01 14:32:25 +08:00
<template>
<footer id="footer" style="padding: 30px">
<footer-bar style="padding-bottom: 30px" />
</footer>
</template>
<script>
import FooterBar from './components/footer/FooterBar';
export default {
name: 'FooterView',
components: {
FooterBar,
},
};
</script>