Must the render function VNodes be unique in vuejs?

vuejs official website tutorial:
ide/render-function.html-sharp%E7%BA%A6%E6%9D%9F" rel=" nofollow noreferrer "> VNodes must be unique

All VNodes in the

component tree must be unique. This means that the following render function is invalid:

render: function (createElement) {
  var myParagraphVNode = createElement("p", "hi")
  return createElement("div", [
    // - VNodes
    myParagraphVNode, myParagraphVNode
  ])
}

but the result of my test is that the above code is OK. The test address is as follows:
https://codepen.io/quiettroja.
running result is normal:

clipboard.png

Why is it inconsistent with the conclusion of the official website?

Aug.02,2021

rendering is fine, and there will be problems with subsequent operations. The above code scenario is too simple, so try to replace it with complex scenarios.
someone has already explained the VNode constraint problem of vue. see for details.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b36936-2c01f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b36936-2c01f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?