mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
17 lines
500 B
Vue
17 lines
500 B
Vue
<template>
|
|
<div text-center c-blue>I prove that you have made the jump test1.</div>
|
|
<n-space m-50>
|
|
<n-button>Default</n-button>
|
|
<n-button type="tertiary">Tertiary</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>
|
|
</template>
|
|
|
|
<script setup lang="ts"></script>
|
|
|
|
<style scoped></style>
|