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

33 lines
312 B
Vue

<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>