出现背景:ant design vue pro 执行yarn run serve
解决办法:
修改src/components/NumberInfo.vue 文件中style部分
原来的:
<style lang="less" scoped> @import "index"; </style>
注释掉 @import "index"
<style lang="less" scoped> //@import "index"; </style>
最后重新执行yarn run serve
标签:index,vue,src,NumberInfo,components,import From: https://www.cnblogs.com/opensmarty/p/17348903.html