sagaToolbar.vue 721 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!--
  2. * @Author: zhangyu
  3. * @Date: 2020-05-08 16:47:45
  4. * @Info:
  5. * @LastEditTime: 2020-05-08 18:38:11
  6. -->
  7. <template>
  8. <div class="saga-toolbar-box">
  9. <div class="saga-toolbar-main">
  10. <brand-tool></brand-tool>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. import brandTool from "@/components/brand/brandTool"
  16. export default {
  17. components: {
  18. brandTool
  19. },
  20. created() {},
  21. mounted() {},
  22. data() {
  23. return {
  24. }
  25. },
  26. methods: {}
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .saga-toolbar-box {
  31. position: fixed;
  32. top: 48px;
  33. left: 0;
  34. width: 100%;
  35. height: 70px;
  36. background: #fff;
  37. .saga-toolbar-main {
  38. width: 1200px;
  39. height: 100%;
  40. margin: auto;
  41. }
  42. }
  43. </style>