Invalid vnode type when creating vnode: undefined.
主要是因为引入组件的时候,变量名没有首字母大写
import winVue from "./components/win.vue";//错误的
import WinVue from "./components/win.vue";//正确的
Invalid vnode type when creating vnode: undefined.
主要是因为引入组件的时候,变量名没有首字母大写
import winVue from "./components/win.vue";//错误的
import WinVue from "./components/win.vue";//正确的