123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div class="tool-item-wrap">
- <el-tooltip class="item" effect="dark" :content="tooltip" placement="top">
- <slot></slot>
- </el-tooltip>
- </div>
- </template>
- <script>
- export default {
- props:{
- tooltip:{
- type:String,
- default:''
- },
- toolkey:{
- type:String,
- default:''
- },
- disabled:{
- type:Boolean,
- default:false,
- }
- },
- data() {
- return {};
- },
- methods: {
- },
- };
- </script>
- <style scoped lang="scss">
- </style>
|