Vue App 服务在本地工作,但在 Apache 服务器中不工作
Vue App service works locally but not in Apache server
我有 Vue 应用程序,当我这样做时 npm run wc
它在本地主机上运行良好;但是当我把它放在服务器上时出现这个错误:
Vue warn]: Unknown custom element: <v-app> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
我需要做什么来解决这个错误?
谢谢
添加到 package.json 文件:
"service": "vue-cli-service build --target lib"
下面的命令应该是运行:
npm 运行 构建
npm 运行 服务
我有 Vue 应用程序,当我这样做时 npm run wc
它在本地主机上运行良好;但是当我把它放在服务器上时出现这个错误:
Vue warn]: Unknown custom element: <v-app> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
我需要做什么来解决这个错误? 谢谢
添加到 package.json 文件:
"service": "vue-cli-service build --target lib"
下面的命令应该是运行:
npm 运行 构建
npm 运行 服务