4e30b9c69433c0c4b42a49a8e4dfe0752e1faef0.svn-base 564 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div class="toolbar">
  3. <div style="float: left">
  4. <slot name="extra"></slot>
  5. </div>
  6. <div style="float: right">
  7. <slot></slot>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. name: "FooterToolBar"
  14. }
  15. </script>
  16. <style lang="less" scoped>
  17. .toolbar {
  18. position: fixed;
  19. width: 100%;
  20. bottom: 0;
  21. right: 0;
  22. height: 56px;
  23. line-height: 56px;
  24. box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03);
  25. background: #fff;
  26. border-top: 1px solid #e8e8e8;
  27. padding: 0 24px;
  28. z-index: 9;
  29. }
  30. </style>