webpack 是这么配置的,devtool: "eval-cheap-module-source-map"。
devtool: "eval-cheap-module-source-map"
如果在 vue 单文件中的<script></script>段中报错,点击 console 面板的报错信息可以正常跳到编译前的 vue 模板对应行里。
<script></script>
如果是在<template></template>段中报错,点击 console 面板的报错信息就只能跳到编译后的 vue 模板对应行,这个有办法解决吗?
<template></template>
看了下 vue-cli 创建的模板也只能跳到编译后的报错行。