editor-portal使用insertCustomBlock插入自定义块时设置了nowrap: true自定义块还是换行了,怎么让自定义块跟普通文本同行
插入自定义块
function insertCustomBlock() {
editorContext.value?.insertCustomBlock({
nowrap: true,
success(res) {
state.customBlockList.push({
blockId: res.blockId
})
}
})
}
}

兄弟解决了吗? 我用 nowrap: true 说明了。还是被占用一行了。布局里面用的是<text>,加了一些css上去还是不行