vue中import引入模块路径中@符号是什么意思
Posted wangzhisdu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中import引入模块路径中@符号是什么意思相关的知识,希望对你有一定的参考价值。
在编写vue文件中引入模块
import(‘@/view/single-page/home‘)
这里路径前面的“@”符号表示什么意思?
// vue.config.js chainWebpack: config => { config.resolve.alias .set(‘@‘, resolve(‘src‘)) // key,value自行定义,比如.set(‘@@‘, resolve(‘src/components‘)) .set(‘_c‘, resolve(‘src/components‘)) .set(‘_conf‘, resolve(‘config‘)) }
"@"符号是一种别名的写法,这里代表"src"路径。
以上是关于vue中import引入模块路径中@符号是什么意思的主要内容,如果未能解决你的问题,请参考以下文章
vue 页面引入自己写的js,报错:Module not found?