From 54393e41bc95c546091e23c063cf62d10900c3d9 Mon Sep 17 00:00:00 2001 From: xiaodemen Date: Thu, 11 Nov 2021 15:22:05 +0800 Subject: [PATCH] refactor: refine accordion demo Change-Id: Id76df02e50179eb27ccad1cd0b931f344e6cc118 --- one/docs/demo/accordion/variant.vue | 8 ++++---- one/docs/demo/collapse/variant.vue | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/one/docs/demo/accordion/variant.vue b/one/docs/demo/accordion/variant.vue index e90b9e4..eff4799 100644 --- a/one/docs/demo/accordion/variant.vue +++ b/one/docs/demo/accordion/variant.vue @@ -50,10 +50,10 @@ export default { data () { return { variants: [ - { label: '默认', value: '' }, - { label: '简洁', value: 'simple' }, - { label: '白底', value: 'basic' }, - { label: '灰底', value: 'strong' } + { label: 'default', value: '' }, + { label: 'simple', value: 'simple' }, + { label: 'basic', value: 'basic' }, + { label: 'strong', value: 'strong' } ], variant: '', bordered: '', diff --git a/one/docs/demo/collapse/variant.vue b/one/docs/demo/collapse/variant.vue index c07c93b..60c782c 100644 --- a/one/docs/demo/collapse/variant.vue +++ b/one/docs/demo/collapse/variant.vue @@ -47,10 +47,10 @@ export default { data () { return { variants: [ - { label: '默认', value: '' }, - { label: '简洁', value: 'simple' }, - { label: '白底', value: 'basic' }, - { label: '灰底', value: 'strong' } + { label: 'default', value: '' }, + { label: 'simple', value: 'simple' }, + { label: 'basic', value: 'basic' }, + { label: 'strong', value: 'strong' } ], variant: '', bordered: '',