使用laravel項目集成vue2-admin-lte包,不過在寫demo的時候出現了一些情況。vue
別名 `mix.webpackConfig({ resolve: {node
alias:{ 'va': 'vue2-admin-lte/src' }
} });` 在webpack.mix.js添加如上代碼使用的時候別名並無起做用,只能使用全名路徑vue2-admin-lte/src。webpack
編譯出錯 npm run dev時報錯:Module build failed: ReferenceError: Unknown plugin "transform-runtime" specified in "E:\pub\ubody_pubhealth\node_modules\_vue2-admin-lte@0.4.2@vue2-admin-lte\.babelrc" at 0, attempted to resolve relative to "E:\pub\ubody_pubhealth\node_modules\_vue2-a dmin-lte@0.4.2@vue2-admin-lte"laravel
經過網上查找緣由,執行命令npm install babel-plugin-transform-runtime 解決。 不過又出現:Module build failed: Error: Couldn't find preset "stage-2" relative to directory "E:\pub\ubody_pubhealth\node_modules\_vue2-admin-lte@0.4.2@vue2-admin-lte" 經過網絡查找緣由,執行npm install --save-dev babel-preset-stage-2解決問題,編譯成功。 這裏涉及到.babelrc文件,這個文件只是大概瞭解一下,並無具體掌握web