<!-- Please provide thoughtful commentary *and code samples* on what this feature means for your product. What will it allow you to do that you can't do today? How will it make current work-arounds straightforward? What potential bugs and edge cases does it help to avoid? etc. Please keep it product-centric. --> ``` <template> <ul > <li v-for="item, index in items"></li> <infinite-loading @infinite="infiniteHandler"></infinite-loading> </ul> </template> ``` will rendered as: ``` <ul > <li v-for="item, index in items"></li> <div ... ></div> </ul> ``` `div` inside `ul` doesn't look good, so I think what it could be helpful to get `tag` attribute for set render wrapper tag.