You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
282 B
19 lines
282 B
|
6 years ago
|
<template>
|
||
|
|
<footer class="page-footer">
|
||
|
|
我是footer
|
||
|
|
</footer>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "Footer"
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
.page-footer {
|
||
|
|
padding: 48px 24px 24px 24px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
</style>
|