mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-19 01:56:38 +08:00
15 lines
275 B
Vue
15 lines
275 B
Vue
<template>
|
|
<div>
|
|
<h3>System</h3>
|
|
<n-button>
|
|
<router-link to="/home">home</router-link>
|
|
</n-button>
|
|
<n-switch :value="true" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { NButton, NSwitch } from 'naive-ui';
|
|
</script>
|
|
<style scoped></style>
|