diff --git a/examples/sites/demos/.eslintrc.js b/examples/sites/demos/.eslintrc.js index df5ce1a64d..8d6c32ab08 100644 --- a/examples/sites/demos/.eslintrc.js +++ b/examples/sites/demos/.eslintrc.js @@ -3,6 +3,7 @@ /** @type {import('eslint').Linter.Config} */ module.exports = { rules: { - 'no-console': 'off' + 'no-console': 'off', + 'vue/no-unused-vars': 'off' } } diff --git a/examples/sites/demos/apis/dialog-box.js b/examples/sites/demos/apis/dialog-box.js index 0782c04090..5442b42502 100644 --- a/examples/sites/demos/apis/dialog-box.js +++ b/examples/sites/demos/apis/dialog-box.js @@ -133,7 +133,7 @@ export default { 'en-US': 'Achieve the maximum height of the window' }, mode: ['pc'], - pcDemo: 'form-in-dialog' + pcDemo: 'dialog-width' }, { name: 'modal', diff --git a/examples/sites/demos/apis/tag-group.js b/examples/sites/demos/apis/tag-group.js index 600b34b433..a8509b21e9 100644 --- a/examples/sites/demos/apis/tag-group.js +++ b/examples/sites/demos/apis/tag-group.js @@ -32,7 +32,7 @@ export default { }, { name: 'size', - type: "'medium' | 'small' | 'mini'", + type: "'medium' | 'small'", defaultValue: "'medium'", desc: { 'zh-CN': '尺寸', diff --git a/examples/sites/demos/apis/tag.js b/examples/sites/demos/apis/tag.js index 7d8b76d840..a066f2d0d4 100644 --- a/examples/sites/demos/apis/tag.js +++ b/examples/sites/demos/apis/tag.js @@ -271,7 +271,7 @@ type IEffect = 'dark' | 'light' | 'plain' name: 'ISize', type: 'type', code: ` -type ISize = 'medium' | 'small' | 'mini' | '' +type ISize = 'medium' | 'small' | '' ` }, { diff --git a/examples/sites/demos/mobile-first/app/tabs/tabdata-title.vue b/examples/sites/demos/mobile-first/app/tabs/tabdata-title.vue index 6fedcea37c..b01ff85662 100644 --- a/examples/sites/demos/mobile-first/app/tabs/tabdata-title.vue +++ b/examples/sites/demos/mobile-first/app/tabs/tabdata-title.vue @@ -1,6 +1,6 @@