mirror of
https://github.com/iczer/vue-antd-admin.git
synced 2025-04-27 12:07:01 +08:00
31 lines
536 B
Vue
31 lines
536 B
Vue
<template>
|
|
<div class="toolbar">
|
|
<div style="float: left">
|
|
<slot name="extra"></slot>
|
|
</div>
|
|
<div style="float: right">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'FooterToolBar'
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.toolbar{
|
|
position: fixed;
|
|
width: 100%;
|
|
bottom: 0;
|
|
right: 0;
|
|
box-shadow: 0 -1px 2px @shadow-color;
|
|
background: @base-bg-color;
|
|
border-top: 1px solid @border-color-split;
|
|
padding: 12px 24px;
|
|
z-index: 9;
|
|
}
|
|
</style>
|