import Vue from 'vue'
import App from './app.vue'
const root = document.createElement('div')
document.body.appendChild(root)
new Vue({
render: (h) => h(App)
}).$mount(root)
请问你的问题解决了吗?
这个应该是你的app.vue文件出错了,<template>下只能有一个跟目录