is configured in webpack as follows:
resolve: {
extensions: [".js", ".vue", ".json"],
alias: {
"vue$": "vue/dist/vue.esm.js",
"@": resolve("src"),
}
},
where @ points to the src directory, and
when importing components elsewhere, can any relevant plug-ins recognize the list of files in the path when typing import {} from"@ / xxx"?