# 时间 设定 Message 的持续时间。 ```html 持续 5 秒 ``` ```js export default { data() { return {} }, methods: { emitInfo() { this.$NMessage.info( "I don't know why nobody told you how to unfold your love", { duration: 5000 } ) } } } ```