【爬坑日記】vue中引入echarts,報錯ReferenceError: echarts is not defined

BenjaminC發表於2018-07-10

由於我在vue專案中,是在index.html檔案中直接用<script>標籤引入的echarts.js檔案,會導致echarts.js檔案沒有正確引用,故會報錯

【爬坑日記】vue中引入echarts,報錯ReferenceError: echarts is not defined

專案目錄結構

【爬坑日記】vue中引入echarts,報錯ReferenceError: echarts is not defined

index.html中引入 echarts.js 檔案

【爬坑日記】vue中引入echarts,報錯ReferenceError: echarts is not defined

解決方法

配置 build/webpack.dev.conf.js 檔案,在plugins屬性中新增新屬性

plugins: [
    new CopyWebpackPlugin([
      {
        from: path.resolve(__dirname, '../assets'),
        to: 'assets',
      }
    ])
]
複製程式碼

相關文章