使用MAF开发插件时FrameworkElementAdapters是个坑,查帮助手册发现这个类位于System.AddIn.Pipeline命名空间中,但是添加System.AddIn的引用后发现VS还是报错:"The name 'FrameworkElementAdapters' does not exist in the current ×××(你当前程序集的名称)". 搞了半天才发现,还要添加System.Windows.Presentation的引用才能解决这个错误,真是让人…
vue使用v-for时vscode报错 Elements in iteration expect to have 'v-bind:key' directives Vue 2.2.0+的版本里,当在组件中使用v-for时,key是必须的错误提示:[vue-language-server] Elements in iteration expect to have 'v-bind:key' directives.Renders the element or template block multipl…
在开发中引用插件时,报错“exports is not defined” 但在引用第三方组件的时候,在浏览器中报错“exports is not defined”.根据浏览器报错信息,查询到报错来源是第三方组件的一段代码: 经过查资料,这是使用了CommonJs写法,而在应用中并没有做相应的模块转换使得浏览器能够识别.而导致这个问题是因为balbel的配置文件.babelrc的问题: 需要改动.babelrc文件即可: 其中{ "modules": false }阻止了babel进行模…