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