### What problem does this feature solve? This allows the developer to attach a component within the context of a page, and potentially allows for more integrated testing, e.g. via puppeteer. ### What does the proposed API look like? Currently you offer this option in the API: https://vue-test-utils.vuejs.org/api/options.html#attachtodocument I believe it should be expanded to allow specification of _where_ in the document it is attached. ``` const wrapper = mount(Component, { attachTo: document.getElementById('app'), }) ``` This is roughly equivalent to the API used by Enzyme https://enzymejs.github.io/enzyme/docs/api/mount.html <!-- generated by vue-issues. DO NOT REMOVE -->