()
| 652 | const foo = ref('') |
| 653 | |
| 654 | const createNewApp = () => { |
| 655 | const app = createApp({ render: () => h('new app') }) |
| 656 | const wrapper = nodeOps.createElement('div') |
| 657 | app.mount(wrapper) |
| 658 | return function destroy() { |
| 659 | app.unmount() |
| 660 | } |
| 661 | } |
| 662 | |
| 663 | const Comp = defineComponent({ |
| 664 | setup() { |
no test coverage detected