1234567891011121314151617181920 |
- <!--右侧属性栏-->
- <template>
- <div class="right-property-bar">右侧属性栏</div>
- </template>
- <script>
- export default {
- data() {
- return {};
- }
- };
- </script>
- <style lang="less" scoped>
- .right-property-bar {
- background: rgba(255, 255, 255, 1);
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- box-sizing: border-box;
- width: 240px;
- height: calc(~"100% - 2px");
- }
- </style>
|