mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
79 lines
1.5 KiB
Vue
79 lines
1.5 KiB
Vue
<template>
|
|
<demo-section>
|
|
<demo-block :title="t('basicUsage')">
|
|
<van-divider />
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('withText')">
|
|
<van-divider>
|
|
{{ t('text') }}
|
|
</van-divider>
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('contentPosition')">
|
|
<van-divider content-position="left">
|
|
{{ t('text') }}
|
|
</van-divider>
|
|
|
|
<van-divider content-position="right">
|
|
{{ t('text') }}
|
|
</van-divider>
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('dashed')">
|
|
<van-divider dashed :hairline="false">
|
|
{{ t('text') }}
|
|
</van-divider>
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('customStyle')">
|
|
<van-divider
|
|
:style="{ borderColor: BLUE, color: BLUE, padding: '0 16px' }"
|
|
>
|
|
{{ t('text') }}
|
|
</van-divider>
|
|
</demo-block>
|
|
</demo-section>
|
|
</template>
|
|
|
|
<script>
|
|
import { BLUE } from '../../utils/constant';
|
|
|
|
export default {
|
|
i18n: {
|
|
'zh-CN': {
|
|
text: '文本',
|
|
dashed: '虚线',
|
|
withText: '展示文本',
|
|
contentPosition: '内容位置',
|
|
customStyle: '自定义样式',
|
|
},
|
|
'en-US': {
|
|
text: 'Text',
|
|
dashed: 'Dashed',
|
|
withText: 'With Text',
|
|
contentPosition: 'Content Position',
|
|
customStyle: 'Custom Style',
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
BLUE,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import '../../style/var';
|
|
|
|
.demo-divider {
|
|
background-color: @white;
|
|
|
|
.van-doc-demo-block__title {
|
|
padding-top: @padding-md;
|
|
}
|
|
}
|
|
</style>
|