mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
94 lines
2.3 KiB
Vue
94 lines
2.3 KiB
Vue
<script setup lang="ts">
|
|
import { useTranslate } from '@demo/use-translate';
|
|
|
|
const i18n = {
|
|
'zh-CN': {
|
|
text: '在代码阅读过程中人们说脏话的频率是衡量代码质量的唯一标准。',
|
|
mode: '通知栏模式',
|
|
content: '内容',
|
|
wrapable: '多行展示',
|
|
shortText: '技术是开发它的人的共同灵魂。',
|
|
scrollable: '滚动播放',
|
|
customStyle: '自定义样式',
|
|
verticalScroll: '垂直滚动',
|
|
},
|
|
'en-US': {
|
|
text: 'Technology is the common soul of the people who developed it.',
|
|
mode: 'Mode',
|
|
content: 'Content',
|
|
wrapable: 'Wrapable',
|
|
shortText: 'Some short text.',
|
|
customStyle: 'Custom Style',
|
|
scrollable: 'Scrollable',
|
|
verticalScroll: 'Vertical Scroll',
|
|
},
|
|
};
|
|
|
|
const t = useTranslate(i18n);
|
|
</script>
|
|
|
|
<template>
|
|
<demo-block :title="t('basicUsage')">
|
|
<van-notice-bar :text="t('text')" scrollable left-icon="volume-o" />
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('scrollable')">
|
|
<van-notice-bar scrollable :text="t('shortText')" />
|
|
<van-notice-bar :scrollable="false" :text="t('text')" />
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('wrapable')">
|
|
<van-notice-bar wrapable :scrollable="false" :text="t('text')" />
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('mode')">
|
|
<van-notice-bar mode="closeable" :text="t('shortText')" />
|
|
<van-notice-bar mode="link" :text="t('shortText')" />
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('customStyle')">
|
|
<van-notice-bar
|
|
:text="t('shortText')"
|
|
color="#1989fa"
|
|
background="#ecf9ff"
|
|
left-icon="info-o"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block v-if="!isWeapp" :title="t('verticalScroll')">
|
|
<van-notice-bar left-icon="volume-o" :scrollable="false">
|
|
<van-swipe
|
|
vertical
|
|
class="notice-swipe"
|
|
:autoplay="3000"
|
|
:show-indicators="false"
|
|
>
|
|
<van-swipe-item>{{ t('content') }} 1</van-swipe-item>
|
|
<van-swipe-item>{{ t('content') }} 2</van-swipe-item>
|
|
<van-swipe-item>{{ t('content') }} 3</van-swipe-item>
|
|
</van-swipe>
|
|
</van-notice-bar>
|
|
</demo-block>
|
|
</template>
|
|
|
|
<style lang="less">
|
|
@import '../../style/var';
|
|
|
|
.demo-notice-bar {
|
|
background: @white;
|
|
|
|
.van-notice-bar:not(:first-of-type) {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.van-doc-demo-block__title {
|
|
padding-top: 24px;
|
|
}
|
|
|
|
.notice-swipe {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
}
|
|
</style>
|