diff --git a/.eslintrc.cjs b/.eslintrc.cjs index ee55f0f..8821985 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -43,6 +43,9 @@ module.exports = { 'vue/singleline-html-element-content-newline': 'off', //要求在单行元素的内容之前和之后有一个换行符 'vue/max-attributes-per-line': 'off', //执行每行的最大属性数(被 prettier 最大单行控制了暂off) 'vue/multi-word-component-names': 'off', //要求组件名称始终为多字 + '@typescript-eslint/ban-ts-comment': 'off', // 不允许@ts-<指令>评论或要求指令后的描述 + '@typescript-eslint/ban-types': 'off', // 不允许某些类型 + '@typescript-eslint/no-non-null-assertion': 'off', // 不允许使用!后缀操作符的非空断言 }, globals: { //可以定义全局中的变量的权限(只读,可读可写) diff --git a/src/components/BasicInput/index.vue b/src/components/BasicInput/index.vue index aaf35bb..ee5f984 100644 --- a/src/components/BasicInput/index.vue +++ b/src/components/BasicInput/index.vue @@ -21,8 +21,8 @@ export default defineComponent({ default: '', }, }, - setup(props) { - const _props = props; + setup(_props) { + // const _props = props; return {}; }, }); diff --git a/src/components/Iconify/index.vue b/src/components/Iconify/index.vue index 01216e9..9cfe5bd 100644 --- a/src/components/Iconify/index.vue +++ b/src/components/Iconify/index.vue @@ -1,6 +1,7 @@