微信小程序,访客邀约
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
225 B

  1. // ESLint 检查 .vue 文件需要单独配置编辑器:
  2. // https://eslint.vuejs.org/user-guide/#editor-integrations
  3. module.exports = {
  4. 'extends': ['taro/vue3'],
  5. rules: {
  6. 'vue/multi-word-component-names': 0,
  7. },
  8. }