Example:
import Vue from 'vue'
import Router from 'vue-router'
import Hello from '@/components/Hello'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'Hello',
component: Hello
}
]
})
Among them, what does @
in import Hello from '@/components/Hello'
mean?
In addition, where is the document for loading specifications? I searched for a long time but couldn't find it.