mirror of
https://github.com/rubickCenter/rubick
synced 2025-12-30 07:39:54 +08:00
💄 UI 升级
This commit is contained in:
@@ -6,11 +6,21 @@
|
||||
:title="$t('feature.market.searchResult')"
|
||||
:list="result"
|
||||
/>
|
||||
<a-result
|
||||
class="error-content"
|
||||
v-else
|
||||
sub-title="哎呀,暂时还没有这个插件哟!"
|
||||
>
|
||||
<template #icon>
|
||||
<Vue3Lottie :animationData="emptyJson" :height="240" :width="240" />
|
||||
</template>
|
||||
</a-result>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { computed } from 'vue';
|
||||
import emptyJson from '@/assets/lottie/empty.json';
|
||||
import PluginList from './plugin-list.vue';
|
||||
|
||||
import { useStore } from 'vuex';
|
||||
@@ -38,8 +48,10 @@ const result = computed(() => {
|
||||
<style lang="less">
|
||||
.result {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
overflow-x: hidden;
|
||||
box-sizing: border-box;
|
||||
.error-content {
|
||||
padding-top: 40px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user