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
36
37
38
39
40
41
42
43
44
45
46
47
| <template>
| <div :class="prefixCls" :style="{ width: barWidth, transition: '0.3s all' }">
| <div style="float: left">
| <slot name="extra">{{ extra }}</slot>
| </div>
| <div style="float: right">
| <slot></slot>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| name: 'FooterToolBar',
| props: {
| prefixCls: {
| type: String,
| default: 'ant-pro-footer-toolbar'
| },
| collapsed: {
| type: Boolean,
| default: false
| },
| isMobile: {
| type: Boolean,
| default: false
| },
| siderWidth: {
| type: Number,
| default: undefined
| },
| extra: {
| type: [String, Object],
| default: ''
| }
| },
| computed: {
| barWidth () {
| return this.isMobile ? undefined : `calc(100% - ${this.collapsed ? 80 : this.siderWidth || 256}px)`
| }
| }
| }
| </script>
|
| <style lang="less" scoped>
|
| </style>
|
|