Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

vue中以变量形式导入jsx

比如在用ant design vue notification 组件时候
message 可以直接使用jsx

this.$notification.open({
    message: (
        <div>
            <span>hello world</span>
        </div>
    )
})

请问如何把这段

<div>
    <span>hello world</span>
</div>

以变量形式从一个单独文件导入进来使用?
最终希望这样使用

this.$notification.open({
    message: jsxVar // 外部导入
})

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...