我正在使用webpack(https://vue-loader.vuejs.org/en/start/setup.html)的基本 vue 加载程序设置。 在我的main.js中,我导入了必要的:
import Vue from 'vue'
import App from './App.vue'
import firebase from 'firebase'
import docx2html from 'docx2html'
firebase 和 docx2html 都位于src下的node_modules
文件夹中,并在dependencies文件夹中指定。由于某种原因导入了firebase,但找不到docx2html。它返回错误:
找不到模块:错误:无法解析' docx2html'在 ' C:\路径\到\ SRC'
我应该如何导入docx2html,为什么它不能以这种方式工作?