mirror of
https://github.com/caojiezi2003/clock-shop.git
synced 2025-04-05 09:36:56 +00:00
28 lines
642 B
Vue
28 lines
642 B
Vue
<template>
|
|
<div class="footer-bottom">
|
|
<div class="container">
|
|
<div style="visibility: visible; animation-name: zoomIn;" class="col-md-12 text-center wow zoomIn">
|
|
<div class="footer_copyright">
|
|
<p> © Copyright, a-jie All Rights Reserved.</p>
|
|
<div class="credits">
|
|
WebSite designed by <a href="https://bootstrapmade.com/">BootstrapMade.com</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Footer',
|
|
props: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped>
|
|
|
|
</style>
|