31 lines
699 B
Vue
31 lines
699 B
Vue
<script setup lang="ts">
|
|
import { ref, computed, h, onMounted } from 'vue';
|
|
import { useAppStore } from '@/store/modules/app';
|
|
import { Icon } from '@iconify/vue'
|
|
import { useThemeStore } from '@/store/modules/theme';
|
|
import { useRouter } from 'vue-router';
|
|
import { NButton, NPopconfirm } from 'naive-ui';
|
|
|
|
const router = useRouter();
|
|
const appStore = useAppStore();
|
|
const themeStore = useThemeStore();
|
|
const gap = computed(() => (appStore.isMobile ? 0 : 16));
|
|
|
|
onMounted(() => {
|
|
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<NSpace vertical :size="16">
|
|
用户
|
|
</NSpace>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.scroll {
|
|
height: calc(100vh - 205px);
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|