1234567891011121314151617181920212223242526 |
- <template >
- <div id="tooltip">
- <slot></slot>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- };
- </script>
- <style lang="less" scoped>
- #tooltip {
- min-width: 40px;
- min-height: 40px;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 2px 4px 0px rgba(31, 36, 41, 0.1);
- border-radius: 2px;
- padding: 6px 10px 6px 10px;
- position: absolute;
- z-index: 99;
- left: 0;
- top: 0;
- }
- </style>
|