mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-29 01:39:15 +08:00
34 lines
548 B
Vue
34 lines
548 B
Vue
<template>
|
|
<demo-section>
|
|
<demo-block :title="$t('basicUsage')">
|
|
<van-button
|
|
type="primary"
|
|
:text="$t('showOverlay')"
|
|
style="margin-left: 16px;"
|
|
@click="show = true"
|
|
/>
|
|
|
|
<van-overlay :show="show" @click="show = false" />
|
|
</demo-block>
|
|
</demo-section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
i18n: {
|
|
'zh-CN': {
|
|
showOverlay: '显示遮罩层'
|
|
},
|
|
'en-US': {
|
|
showOverlay: 'Show Overlay'
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
show: false
|
|
};
|
|
}
|
|
};
|
|
</script>
|