style(Circle): add @circle-color less var

This commit is contained in:
chenjiahan
2020-11-30 23:00:32 +08:00
committed by neverland
parent bb18310f1b
commit 1a6cf64f54
14 changed files with 23 additions and 47 deletions
+1 -9
View File
@@ -28,7 +28,7 @@
<demo-block :title="t('customStyle')">
<van-divider
:style="{ borderColor: BLUE, color: BLUE, padding: '0 16px' }"
:style="{ borderColor: '#1989fa', color: '#1989fa', padding: '0 16px' }"
>
{{ t('text') }}
</van-divider>
@@ -37,8 +37,6 @@
</template>
<script>
import { BLUE } from '../../utils/constant';
export default {
i18n: {
'zh-CN': {
@@ -56,12 +54,6 @@ export default {
customStyle: 'Custom Style',
},
},
data() {
return {
BLUE,
};
},
};
</script>