1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| <template>
| <footer v-if="visible" class="copyright">
| <span>{{ content }}</span>
| </footer>
| </template>
|
| <script>
| export default {
| computed: {
| visible() {
| return this.$store.state.settings.footerVisible
| },
| content() {
| return this.$store.state.settings.footerContent
| }
| }
| }
| </script>
|
| <style scoped>
| .copyright {
| position: fixed;
| bottom: 0;
| left: 0;
| right: 0;
| height: 36px;
| padding: 10px 20px;
| text-align: right;
| background-color: #f8f8f8;
| color: #666;
| font-size: 14px;
| border-top: 1px solid #e7e7e7;
| z-index: 999;
| }
| </style>
|
|