vue的message组件不能直接写个方法用js直接append到body吗?

纯纯小白,不懂vue


回答:

可以的,可以看看 teleport 属性

<Teleport to="body">

<div v-if="open" class="modal">

<p>Hello from the modal!</p>

<button @click="open = false">Close</button>

</div>

</Teleport>


回答:

Vuemessage 组件?Vue没有提供这个组件啊,你是不是使用了一些UI库。你得去看UI组件库的 message 组件是否支持添加到 body 尾部。

或者参考 1楼 提到的给 Teleport 元素添加 to 属性来指定传送的目标。

以上是 vue的message组件不能直接写个方法用js直接append到body吗? 的全部内容, 来源链接: utcz.com/p/933506.html

回到顶部