Vue學習筆記——vue.config.js(路徑別名)以及 .editorconfig(程式碼風格規定)

小姚同學要繼續加油呀發表於2020-12-12

在主專案目錄下分別建立一個vue.config.js(路徑別名)以及 .editorconfig(程式碼風格規定)。
在這裡插入圖片描述


路徑別名作用:

設定好了路徑別名後,可在使用這些路徑下的內容時,不用使用 **…/**來進行目錄回退,
可直接使用別名,即使檔案目錄發生變化,只要規定的這些別名沒有變化,則不需要改變。

路徑別名設定舉例:

module.exports = {
  configureWebpack: {
    resolve: {
      alias: {
        'assets': '@/assets',
        'common': '@/common',
        'components': '@/components',
        'network': '@/network',
        'views': '@/views',
      }
    }
  }
}


使用方式如下:
①import等方式直接用別名
②在DOM中使用,則在前面需要加上 “~
(分別在匯入img時加上 ~,以及再匯入元件時直接用components)

<template>
  <tab-bar>
    <tab-bar-item path="/home">
      <img slot="item-icon" src="~assets/img/tabbar/home.svg" alt="">
      <img slot="item-icon-active" src="~assets/img/tabbar/home_active.svg" alt="">
      <div slot="item-text">首頁</div>
    </tab-bar-item>
    <tab-bar-item path="/category">
      <img slot="item-icon" src="~assets/img/tabbar/category.svg" alt="">
      <img slot="item-icon-active" src="~assets/img/tabbar/category_active.svg" alt="">
      <div slot="item-text">分類</div>
    </tab-bar-item>
    <tab-bar-item path="/cart">
      <img slot="item-icon" src="~assets/img/tabbar/shopcart.svg" alt="">
      <img slot="item-icon-active" src="~assets/img/tabbar/shopcart_active.svg" alt="">
      <div slot="item-text">購物車</div>
    </tab-bar-item>
    <tab-bar-item path="/profile">
      <img slot="item-icon" src="~assets/img/tabbar/profile.svg" alt="">
      <img slot="item-icon-active" src="~assets/img/tabbar/profile_active.svg" alt="">
      <div slot="item-text">我的</div>
    </tab-bar-item>
  </tab-bar>
</template>

<script>
  import TabBar from 'components/common/tabbar/TabBar'
  import TabBarItem from 'components/common/tabbar/TabBarItem'

程式碼風格規定舉例:

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

相關文章