【无标题】

Vue3别名使用
1.在整个项目下创建文件vue.configure.js

module.exports = {
  configureWebpack : {
    resolve:{
      alias:{
      //@表示src目录,默认已经配好了
        'assets': '@/assets',
        'common': '@/common',
        'components': '@/components',
        'network': '@/network',
        'views': '@/views'
      }
    }
  }
}
  1. 使用
    (1) 在template中使用,需要加~
    (2) 在script标签中使用,不用加~
<img src="~assets/img/tabbar/home.svg" alt="">
<script>
  import tabbar from 'components/common/tabbar/TabBar'
  import tabbaritem from 'components/common/tabbar/TabBarItem'

  export default {
    name: "maintabbar",
    components: {
      tabbar,
      tabbaritem
    }
  }
</script>
上一篇:python开发 3-2 路由配置


下一篇:arcgis sceneView 风场