Skip to content

Instantly share code, notes, and snippets.

@zgia
Created March 22, 2020 15:20
Show Gist options
  • Save zgia/44ab97bff3e0ec651a24ac86cc5b670f to your computer and use it in GitHub Desktop.
Save zgia/44ab97bff3e0ec651a24ac86cc5b670f to your computer and use it in GitHub Desktop.
van-action-sheet
<template>
<div class="container">
<van-action-sheet show="{{ deleteFileConfirm }}"
actions="[{ name: '删除', color: '#ff0000' }]"
cancel-text="取消"
description="您要删除此文件吗?删除后不可以恢复。"
bind:close="onCancelAction"
bind:cancel="onCancelAction"
bind:select="doDeleteFile" />
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment