mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
25 lines
495 B
Vue
25 lines
495 B
Vue
<template>
|
|
<div class="go-project-my-template">
|
|
<n-space vertical>
|
|
<n-image
|
|
object-fit="contain"
|
|
height="300"
|
|
preview-disabled
|
|
:src="requireErrorImg()"
|
|
></n-image>
|
|
<n-h3>暂时还没有东西呢</n-h3>
|
|
</n-space>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { requireErrorImg } from '@/utils'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@include go('project-my-template') {
|
|
margin-top: 100px;
|
|
@extend .go-flex-center;
|
|
}
|
|
</style>
|