Using the utility vue-cli created a template application under the webpack . In the file ./src/router/index.js found the following line:
import Hello from '@/components/Hello' What does @ (dog) mean in the file path?
Look in the file build\webpack.base.conf.js , this is an alias which refers to a specific path, by default the 'path to project / src /'.
Source: https://ru.stackoverflow.com/questions/683791/
All Articles