tooltip.vue 430 B

1234567891011121314151617181920212223242526
  1. <template >
  2. <div id="tooltip">
  3. <slot></slot>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {};
  10. },
  11. };
  12. </script>
  13. <style lang="less" scoped>
  14. #tooltip {
  15. min-width: 40px;
  16. min-height: 40px;
  17. background: rgba(255, 255, 255, 1);
  18. box-shadow: 0px 2px 4px 0px rgba(31, 36, 41, 0.1);
  19. border-radius: 2px;
  20. padding: 6px 10px 6px 10px;
  21. position: absolute;
  22. z-index: 99;
  23. left: 0;
  24. top: 0;
  25. }
  26. </style>