12 lines
253 B
Vue
12 lines
253 B
Vue
<template>
|
|
<div>
|
|
<NButton @click="useAuthStore.login('admin', 'admin')">登录</NButton>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { UseAuthStore } from '@/plugin';
|
|
|
|
const useAuthStore = UseAuthStore();
|
|
</script>
|
|
<style scoped></style>
|