vue iview input 显示 tooltip

        {
          title: "站点位置",
          key: "contactsAddress",
          align: "center",
          tooltip: true,
          render: (h, params) => {
            let _that = this;
            return (
              <Tooltip content={params.row.contactsAddress} placement="top">
                <Input
                  v-model={this.tableData[params.index].contactsAddress}
                  onon-change={(val) => {
                    _that.tableData[params.index].contactsAddress = val.data;
                  }}
                />
              </Tooltip>
            );
          },
        },

猜你喜欢

转载自blog.csdn.net/weixin_42066070/article/details/130201286