rightPropertyBar.vue 388 B

1234567891011121314151617181920
  1. <!--右侧属性栏-->
  2. <template>
  3. <div class="right-property-bar">右侧属性栏</div>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {};
  9. }
  10. };
  11. </script>
  12. <style lang="less" scoped>
  13. .right-property-bar {
  14. background: rgba(255, 255, 255, 1);
  15. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  16. box-sizing: border-box;
  17. width: 240px;
  18. height: calc(~"100% - 2px");
  19. }
  20. </style>