mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
13 lines
225 B
Vue
13 lines
225 B
Vue
<script setup lang="ts">
|
|
const logoutAction = () => {
|
|
|
|
}
|
|
</script>
|
|
<template>
|
|
<div>
|
|
<div class="bg-gray-400 p-2 m-2 w-full">
|
|
<button @click="logoutAction">Logout</button>
|
|
</div>
|
|
<hr/>
|
|
</div>
|
|
</template>
|