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

36 lines
491 B
Vue
Raw Permalink 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>