18 lines
303 B
Vue
18 lines
303 B
Vue
<template>
|
|
<a-layout-footer>
|
|
MovieFinder © 2020 | Made with
|
|
<span style="color: #e74c3c;">♥</span> by Noé Viricel
|
|
</a-layout-footer>
|
|
</template>
|
|
|
|
<script>
|
|
export default {};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.ant-layout-footer {
|
|
text-align: center;
|
|
background-color: #f0f2f5;
|
|
}
|
|
</style>
|