123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <!-- 编辑器-热点 -->
- <div class="editor-hotspot">
- <HotSpotList class="hot-spot-list"></HotSpotList>
- </div>
- </template>
- <script>
- import HotSpotList from "./HotSpotList.vue";
- export default {
- name: "HotSpot",
- components: {
- HotSpotList,
- },
- mounted(){
- },
- watch: {
- },
- data(){
- return {
- }
- },
- methods:{
- }
- };
- </script>
- <style lang="less" scoped>
- .editor-hotspot {
- height: 100%;
- position: relative;
- .hot-spot-list {
- position: absolute;
- z-index: 1000;
- right: 0;
- width: 274px;
- top: 0;
- height: 100%;
- }
- }
- </style>
|