mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-06 23:21:16 +08:00
35 lines
630 B
Vue
35 lines
630 B
Vue
<template>
|
|
<div class="base-placeholder">
|
|
<i :class="['base-placeholder-icon', icon]" />
|
|
<div class="base-placeholder-text">
|
|
<slot>{{ text }}</slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'BasePlaceholder',
|
|
props: {
|
|
text: { type: String, default: '' },
|
|
icon: { type: String, default: 'fas fa-inbox' },
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.base-placeholder {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 10px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 300px;
|
|
opacity: 0.5;
|
|
}
|
|
.base-placeholder-text {
|
|
font-size: 16px;
|
|
color: var(--text-color);
|
|
}
|
|
</style>
|