What does the @ symbol mean when import is in the vue component?

for example, there is a component index.vue, with the following content:

<template>
<div>
//...
<div>
</template>

<script>
import { ALL_POSTS_QUERY } from "@/graphql";

export default {
//...
}
</script>


question:

The

import statement went wrong, caused by the @ symbol in"@ / graphql". What does this @ symbol mean?

Jun.03,2021
The

@ symbol indicates a path. For more information, you need to see the configuration in the configuration file. In alias in webpack.base.conf.js, for example, '@': resolve ('src') indicates that @ will replace the src file path

.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b4083d-2c512.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b4083d-2c512.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?