mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-09-23 03:29:56 +08:00
111 lines
3.0 KiB
Vue
111 lines
3.0 KiB
Vue
<script setup lang="ts">
|
|
import { useTranslate } from '@demo/use-translate';
|
|
import { Toast } from '../../toast';
|
|
|
|
const i18n = {
|
|
'zh-CN': {
|
|
icon1: '客服',
|
|
icon2: '购物车',
|
|
icon3: '店铺',
|
|
button1: '加入购物车',
|
|
button2: '立即购买',
|
|
iconBadge: '徽标提示',
|
|
collected: '已收藏',
|
|
clickIcon: '点击图标',
|
|
clickButton: '点击按钮',
|
|
customIconColor: '自定义图标颜色',
|
|
customButtonColor: '自定义按钮颜色',
|
|
},
|
|
'en-US': {
|
|
icon1: 'Icon1',
|
|
icon2: 'Icon2',
|
|
icon3: 'Icon3',
|
|
button1: 'Button',
|
|
button2: 'Button',
|
|
iconBadge: 'Icon Badge',
|
|
collected: 'Collected',
|
|
clickIcon: 'Click Icon',
|
|
clickButton: 'Click Button',
|
|
customIconColor: 'Custom Icon Color',
|
|
customButtonColor: 'Custom Button Color',
|
|
},
|
|
};
|
|
|
|
const t = useTranslate(i18n);
|
|
const onClickIcon = () => Toast(t('clickIcon'));
|
|
const onClickButton = () => Toast(t('clickButton'));
|
|
</script>
|
|
|
|
<template>
|
|
<demo-block :title="t('basicUsage')">
|
|
<van-action-bar>
|
|
<van-action-bar-icon
|
|
icon="chat-o"
|
|
:text="t('icon1')"
|
|
@click="onClickIcon"
|
|
/>
|
|
<van-action-bar-icon
|
|
icon="cart-o"
|
|
:text="t('icon2')"
|
|
@click="onClickIcon"
|
|
/>
|
|
<van-action-bar-icon
|
|
icon="shop-o"
|
|
:text="t('icon3')"
|
|
@click="onClickIcon"
|
|
/>
|
|
<van-action-bar-button
|
|
type="danger"
|
|
:text="t('button2')"
|
|
@click="onClickButton"
|
|
/>
|
|
</van-action-bar>
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('iconBadge')">
|
|
<van-action-bar>
|
|
<van-action-bar-icon icon="chat-o" dot :text="t('icon1')" />
|
|
<van-action-bar-icon icon="cart-o" badge="5" :text="t('icon2')" />
|
|
<van-action-bar-icon icon="shop-o" badge="12" :text="t('icon3')" />
|
|
<van-action-bar-button type="warning" :text="t('button1')" />
|
|
<van-action-bar-button type="danger" :text="t('button2')" />
|
|
</van-action-bar>
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('customIconColor')">
|
|
<van-action-bar>
|
|
<van-action-bar-icon icon="chat-o" :text="t('icon1')" color="#ee0a24" />
|
|
<van-action-bar-icon icon="cart-o" :text="t('icon2')" />
|
|
<van-action-bar-icon icon="star" :text="t('collected')" color="#ff5000" />
|
|
<van-action-bar-button type="warning" :text="t('button1')" />
|
|
<van-action-bar-button type="danger" :text="t('button2')" />
|
|
</van-action-bar>
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('customButtonColor')">
|
|
<van-action-bar>
|
|
<van-action-bar-icon icon="chat-o" :text="t('icon1')" />
|
|
<van-action-bar-icon icon="cart-o" :text="t('icon2')" />
|
|
<van-action-bar-button
|
|
color="#be99ff"
|
|
type="warning"
|
|
:text="t('button1')"
|
|
/>
|
|
<van-action-bar-button
|
|
color="#7232dd"
|
|
type="danger"
|
|
:text="t('button2')"
|
|
/>
|
|
</van-action-bar>
|
|
</demo-block>
|
|
</template>
|
|
|
|
<style lang="less">
|
|
.demo-action-bar {
|
|
.van-action-bar {
|
|
position: relative;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
</style>
|