15 lines
687 B
Vue
15 lines
687 B
Vue
|
|
<template>
|
|
<div style="display: flex; background-color: #74abe3; height: 70px; width: auto; position: relative; justify-content: flex-end; padding: 0 20px;">
|
|
<a-button ghost style="border: none; font-size: 25px; font-weight: bold; display: flex; position: absolute; top: 20%; left: 20px;" @click="">LOGO</a-button>
|
|
<div style="display: flex; position: absolute; right: 20px; top: 50%; transform: translateY(-50%)">
|
|
<a-button style="color: white" type="text" @click="$router.push('/login')">登录</a-button>
|
|
<a-button style="color: white" type="text" @click="$router.push('/register')">注册</a-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
</script>
|
|
|
|
|