鼠标悬停在"this.test“上,我看到警告:"Element is not exported”
We’ve added a quality-of-life improvement to take care of janitorial work using quick-fixes in your code. Now when you apply an intention or quick fix that results in an unresolved element that is not exported in the file, WebStorm will automatically add the import for the element to th...
You can open a piece of documentation for a specific code element in the tool window and keep viewing documentation for other elements in your current file as described in Keep documentation in the tool window. In the tool window, code documentation is displayed on the unpinned tab (the tab...
as well as a warning for when imports or schemas are used on components that are not standalone. WebStorm can also verify whether each element is a module or standalone
dom.elementClass, Css.id, ts.embedded.content.index, js.amd.modules, js.nonglobal.symbol.index, amd.baseUrl.index, markdown.header, js.symbol.qualified.names.index, Scss.variable, js.exported.index, js.local.namespace.members.index, amd.requirePaths.index, js.lazy.packages, es6.exported....
We’ve improved the IDE’s behavior when adding auto-imports from different libraries with the same exported element name. A popup with import options is no longer shown if the project already has an import for an element. Auto-imports are now added based on the existing import in the proje...
TheReplace destructuring with property or index accessintention will get rid of the destructuring and add variables and assign them to the object property or array element: // Before const[red, green, blue]=["red","green","blue"];