WebStorm cannot correctly identify the solution of Vue3 combined API

WebStorm cannot correctly identify the solution of Vue3 combined API

1 Problem Description

Vue3's combined API cannot be correctly recognized in WebStorm, as defineComponent and other functions cannot be recognized:

2 Attempts

I guess the reason for this problem is that the corresponding Vue3 library cannot be correctly identified. I believe WebStorm can do it, but some configurations are not correct. I tried to check node_modules in the Libraries setting, but it had no effect.

3 Solutions

The final solution is referenced here (source):

Select the node_modules folder, right-click and select Mark Directory as, and finally select Not Excluded.

It will take some time to index, just wait for it to complete.

4 Some thoughts

After looking at the WebStorm documentation, the folders in the project are divided into four categories:

  • Source: Default option, all folders are considered Source by default unless set to Tests/Resource Root/Excluded
  • Tests: Folder marked as tests
  • Resource Root: resource folder. When you enter some code that requires resources, such as ![](xxxx>), the resource files under the folder path will be automatically prompted.
  • Excluded: Folders that will be ignored by code completion, code navigation, etc. This option can improve WebStorm performance

Searching for Directories in the settings reveals that node_modules is Excluded by default:

After being marked as Not Excluded, it is no longer red:

So the solution is not that difficult, it's just that the cause cannot be identified correctly.

The above is the detailed content of the solution to WebStorm’s inability to correctly identify the Vue3 combined API. For more information about WebStorm’s inability to correctly identify the Vue3 combined API, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to use Webstorm and Chrome to debug Vue projects
  • How to run a Vue project with Idea or webstorm (detailed steps)
  • Set resolves.alias: ''@'' path based on vue project and adapt to webstorm
  • A fool-proof tutorial on how to build a vue-cli scaffold in webstorm
  • Solve the problem that the Webpack alias cannot be used in Vue cli scaffolding projects under Idea and WebStorm
  • How to initialize the project with webstorm+vue
  • vue: How to set up fast compilation and running in WebStorm
  • Detailed explanation of Vue syntax support in WebStorm
  • Solution to es6 syntax errors in webstorm and .vue
  • Vue template configuration and webstorm code format specification settings

<<:  How to install MySQL 5.7.17 and set the encoding to utf8 in Windows

>>:  Introduction to Kubernetes (k8s)

Recommend

MySQL 5.7.25 installation and configuration method graphic tutorial

There are two types of MySQL installation files, ...

Introduction to CSS style classification (basic knowledge)

Classification of CSS styles 1. Internal style --...

HTML tutorial, easy to learn HTML language

1. <body background=image file name bgcolor=co...

Detailed use cases of vue3 teleport

Official Website https://cli.vuejs.org/en/guide/ ...

Detailed explanation of MySQL DEFINER usage

Table of contents Preface: 1.Brief introduction t...

MySQL database aggregate query and union query operations

Table of contents 1. Insert the queried results 2...

Detailed graphic tutorial on how to enable remote secure access with Docker

1. Edit the docker.service file vi /usr/lib/syste...

How to use fdisk to partition disk in Linux

Commonly used commands for Linux partitions: fdis...

Detailed explanation of HTML area tag

The <area> tag defines an area in an image ...

MySQL Server 8.0.3 Installation and Configuration Methods Graphic Tutorial

This document records the installation and config...