vant/src/overlay/demo/index.vue
2019-09-25 14:50:48 +08:00

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>