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

36 lines
482 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<view class="padding-xl text-gray text-center">
<view class="big-icon padding-tb" :class="'cuIcon-' + icon"></view>
<view class="text-lg">开发中敬请期待</view>
</view>
</view>
</template>
<script>
export default {
name: 'bg-toast',
props: {
icon: {
type: String,
default: ''
},
msg: {
type: String,
default: ''
}
},
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>