ant design vue的tooltip的宽度修改不生效

// 注意,vue 项目,style 标签不能加 scoped 选项,否则样式不生效

<a-tooltip placement="top" :overlayClassName="{'tooltip':item.voice_content.length > 100}" :arrowPointAtCenter="true">
 <template #title v-if="item.voice_content">
  <span>{{item.voice_content}}</span>
 </template>
  <span>•••</span>
</a-tooltip>
<style lang="less">
	.tooltip {
		min-width: 900px !important;
	}
</style>

 

posted @ 2022-08-05 18:38  Private!  阅读(971)  评论(0编辑  收藏  举报