当前位置:   article > 正文

vue项目路径配置_vue 路径配置

vue 路径配置

在项目根目录创建jsconfig.json文件,将下面代码添加进去

  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "paths": {
  5. "@/*": ["src/*"]
  6. }
  7. },
  8. "exclude": ["node_modules", "dist"]
  9. }

同时在vue.config.js中添加以下代码:

  1. configureWebpack: {
  2. // provide the app's title in webpack's name field, so that
  3. // it can be accessed in index.html to inject the correct title.
  4. name: name,
  5. resolve: {
  6. alias: {
  7. '@': resolve('src')
  8. }
  9. }
  10. },

即可用@指代src目录。


css中不生效解决办法:

img标签

<img :src="require('assets/img/header/search.png')">

背景图:

<button  :style="{backgroundImage: 'url(' + require('@/assets/serch_icon.png') + ')'}"></button>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/254051
推荐阅读
相关标签
  

闽ICP备14008679号