Fixing x-invalid-end-tag lint error on Vuejs

My situation is:

It then generates an error of type x-invalid-end-tag in a quite random fashion. To solve it, I have found one simple trick in this github issue:

// .eslintrc.js

module.exports = { 
//... rules: 
    { 
        'vue/no-parsing-error': [2, { 'x-invalid-end-tag': false }] 

    } 
}