7d1cc2da1a
Co-authored-by: Copilot <copilot@github.com>
15 lines
242 B
Vue
15 lines
242 B
Vue
<script setup lang="ts">
|
|
import { useUserStore } from "~/stores";
|
|
|
|
definePageMeta({
|
|
layout: "index-view"
|
|
});
|
|
|
|
const userStore = useUserStore();
|
|
const { isOnline } = storeToRefs(userStore);
|
|
</script>
|
|
|
|
<template>
|
|
<div>123</div>
|
|
</template>
|