I found that vue-cli (2.9.6, but 3.0.0 beta* has the same issue) \'s building process takes forever once the template\'s html gets relativelly deep.
For example, I j
I do not have any particular issue with your 25 nested Here is a demo with a Vue CLI project on CodeSandbox, probably closer to your example: https://codesandbox.io/s/v3knpl447l (i.e. it precompiles the templates, so the building process actually happens on CodeSandbox server)new Vue({
el: '#app',
template: '#app-template',
});#app div {
border: 1px solid grey;
padding: 1px;
}
<div>'s