22 lines
397 B
Vue
22 lines
397 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
name: {
|
|
type: String,
|
|
default: '空状态'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<view class="cb-empty">
|
|
<image
|
|
src="/static/images/public/empty-icon.png"
|
|
mode="scaleToFill"
|
|
class="left-img"
|
|
></image>
|
|
<text class="bottom-name">{{ props.name }}</text>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|