vue路径写法
Posted steven2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue路径写法相关的知识,希望对你有一定的参考价值。
1 /* Layout */ 2 import Layout from ‘@/layout‘
这个@的代表src,意思就是在src路径下找文件。
也可以在vue.config.js文件里配置,找到下面这段话
configureWebpack: {
// provide the app‘s title in webpack‘s name field, so that
// it can be accessed in index.html to inject the correct title.
name: name,
resolve: {
alias: {
‘@‘: resolve(‘src‘)
}
}
},
以上是关于vue路径写法的主要内容,如果未能解决你的问题,请参考以下文章