longyvfengyun
2023-12-25 d8d792a6842832e8f6af6604274c438b25053afe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<template>
  <div class="chart-right-menu">
    <slot>123</slot>
  </div>
</template>
 
<script>
export default {
  name: "ChartRightMenu",
  props: {
    x: {
      type: Number,
      default: 0,
    },
    y: {
      type: Number,
      default: 0
    }
  },
  data() {
    return {
 
    }
  }
}
</script>
 
<style scoped>
.chart-right-menu {
  position: fixed;
  z-index: 999;
}
</style>