VEEXエアバンド

442 ワード

私は、Vuejsで働いて、Airbnb Eslint規則を使用するとき、以下の役に立つとわかりました.
# .eslintrc.yml

rules:
  # Airbnb Eslint sets the no-param-reassign props option to true, which warns
  # against the modification of parameter properties. However, in order to
  # control the state (using Vuex), one must use mutations/actions.
  # Set it to false.
  'no-param-reassign':
    - error
    -
      props: false