index.vue 595 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <!-- 编辑器-热点 -->
  3. <div class="editor-hotspot">
  4. <HotSpotList class="hot-spot-list"></HotSpotList>
  5. </div>
  6. </template>
  7. <script>
  8. import HotSpotList from "./HotSpotList.vue";
  9. export default {
  10. name: "HotSpot",
  11. components: {
  12. HotSpotList,
  13. },
  14. mounted(){
  15. },
  16. watch: {
  17. },
  18. data(){
  19. return {
  20. }
  21. },
  22. methods:{
  23. }
  24. };
  25. </script>
  26. <style lang="less" scoped>
  27. .editor-hotspot {
  28. height: 100%;
  29. position: relative;
  30. .hot-spot-list {
  31. position: absolute;
  32. z-index: 1000;
  33. right: 0;
  34. width: 274px;
  35. top: 0;
  36. height: 100%;
  37. }
  38. }
  39. </style>