不知道是不是官方小伙独爱单引号, 麻烦修改一下正则吧 ```javascript // ./node_modules/vue-cli-plugin-element-plus/generator/index.js:45:45 bug fix // edit line 41 // error code const renderIndex = lines.findIndex(line => line.match(/createApp\(App\)(\.use\(\w*\))*\.mount\('#app'\)/)) // fix code const renderIndex = lines.findIndex(line => line.match(/createApp\(App\)(\.use\(\w*\))*\.mount\(['"]#app['"]\)/)) ```
不知道是不是官方小伙独爱单引号, 麻烦修改一下正则吧