RotateHandler.vue 360 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="rotate-handler"></div>
  3. </template>
  4. <script lang="ts">
  5. export default {
  6. name: 'rotate-handler',
  7. }
  8. </script>
  9. <style lang="scss" scoped>
  10. .rotate-handler {
  11. position: absolute;
  12. width: 10px;
  13. height: 10px;
  14. top: -25px;
  15. margin-left: -5px;
  16. border: 1px solid $themeColor;
  17. background-color: #fff;
  18. border-radius: 1px;
  19. }
  20. </style>