作用
alt + shift + 鼠标左键 自动跳转 vscode项目的组件代码
项目地址
https://github.com/zh-lx/code-inspector/blob/main/packages/webpack-plugin/README.md
使用方法
npm i webpack-code-inspector-plugin -Dvue.config.js
// vue.config.js
const WebpackCodeInspectorPlugin = require('webpack-code-inspector-plugin');
module.exports = {
  // ...other code
  chainWebpack: (config) => {
    // add this configuration in the development environment
    config
      .plugin('webpack-code-inspector-plugin')
      .use(new WebpackCodeInspectorPlugin());
  },
};
    ---------------------------------------------
生活的意义并不是与他人争高下,而在于享受努力实现目标的过程,结果是对自己行动的嘉奖。
↑面的话,越看越不痛快,应该这么说:
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
新博客 https://www.VuejsDev.com 用于梳理知识点
    
    










