mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
13 lines
247 B
Vue
13 lines
247 B
Vue
<script lang="ts" setup>
|
|
definePageMeta({
|
|
layout: "admin",
|
|
});
|
|
</script>
|
|
<template>
|
|
<div class="flex justify-center min-h-screen w-full">
|
|
<input type="text" />
|
|
<input type="password" />
|
|
<button>登入</button>
|
|
</div>
|
|
</template>
|