enrecipes/app/components/sub/Toast.vue
2021-06-15 16:34:42 +05:30

22 lines
389 B
Vue

<template>
<GridLayout
:hidden="!toast"
row="1"
colSpan="2"
class="appbar snackBar"
columns="*"
@swipe="action"
@tap="action"
@loaded="onload"
>
<StackLayout minHeight="48">
<RLabel class="title msg" :text="toast" />
</StackLayout>
</GridLayout>
</template>
<script>
export default {
props: ["toast", "action", "onload"],
};
</script>