dingdong-mall/components/default-toast/bg-toast.vue

33 lines
312 B
Vue
Raw Normal View History

2022-06-25 17:31:17 +08:00
<template>
<view>
</view>
</template>
<script>
export default {
name: 'bg-toast',
props: {
content: {
type: String,
default: ''
},
cancelMsg: {
type: String,
default: '取消'
}
},
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>