123456789101112131415161718192021222324252627 |
- <template>
- <footer>
- <div class=" text-center">
- <p>
- © 2016 深圳市优软科技有限公司
- </p>
- </div>
- </footer>
- </template>
- <script>
- export default{
- name: 'HelpFooter'
- }
- </script>
- <style scoped>
- footer{
- position: fixed;
- bottom: 0;
- background: #fff;
- height: 40px;
- line-height: 40px;
- }
- footer p{
- font-size: 14px;
- color: #000;
- }
- </style>
|