TypeError: Cannot read property 'cloneNode' of null
Version
3.1.2
Reproduction link
Steps to reproduce
add console.log('----------------')
TypeError: Cannot read property 'cloneNode' of null
remove console.log('----------------')
TypeError: Cannot read property 'nextSibling' of null
What is expected?
no TypeError
What is actually happening?
TypeError
App.vue
<script lang="ts">
import { defineComponent } from 'vue'
import HelloWorld from './components/HelloWorld.vue'
console.log('----------------')
export default defineComponent({
name: 'App',
components: {
HelloWorld,
},
})
</script>