39 lines
1.3 KiB
Vue
39 lines
1.3 KiB
Vue
<!-- This example requires Tailwind CSS v2.0+ -->
|
|
<template>
|
|
<div class="bg-white">
|
|
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
|
|
<div class="text-center">
|
|
<h2
|
|
class="text-base font-semibold text-indigo-600 tracking-wide uppercase"
|
|
>
|
|
API 키
|
|
</h2>
|
|
<p
|
|
class="mt-1 text-4xl font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-6xl"
|
|
>
|
|
키 필터 테스트
|
|
</p>
|
|
<p class="max-w-xl mt-5 mx-auto text-xl text-gray-500">
|
|
선택된 키의 필터 기능을 테스트 합니다.
|
|
<br />
|
|
검사할 텍스트
|
|
</p>
|
|
|
|
<br />
|
|
갈 수 있는 페이지 :
|
|
<a href="javascript:void(0)" @click="$router.push('/key/list')">
|
|
API 키 리스트
|
|
</a>
|
|
,
|
|
|
|
<a href="javascript:void(0)" @click="$router.push('/')"> 홈 </a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'check-auth-op',
|
|
});
|
|
</script>
|