import { createNamespace } from '../utils';
import Network from './Network';
const [createComponent, bem] = createNamespace('empty');
const PRESETS = ['error', 'search', 'default'];
export default createComponent({
props: {
description: String,
image: {
type: String,
default: 'default',
},
},
methods: {
genImageContent() {
const slots = this.$slots.image?.();
if (slots) {
return slots;
}
if (this.image === 'network') {
return ;
},
genImage() {
return
{description}
; } }, genBottom() { const slot = this.$slots.default?.(); if (slot) { return