ruoyi-plus-soybean/src/views/dashboard/workbench/index.vue

21 lines
638 B
Vue
Raw Normal View History

<template>
<div class="p-10px">
<div class="flex-y-center flex-col h-500px bg-white">
<n-gradient-text type="primary" size="32">工作台</n-gradient-text>
<n-space>
<n-button>Default</n-button>
<n-button type="primary">Primary</n-button>
<n-button type="info">Info</n-button>
<n-button type="success">Success</n-button>
<n-button type="warning">Warning</n-button>
<n-button type="error">Error</n-button>
</n-space>
</div>
2021-09-11 02:34:36 +08:00
</div>
</template>
2021-09-11 02:34:36 +08:00
<script lang="ts" setup>
import { NGradientText, NSpace, NButton } from 'naive-ui';
2021-09-11 02:34:36 +08:00
</script>
<style scoped></style>