mirror of
https://github.com/tl-open-source/tl-rtc-file.git
synced 2025-11-01 02:52:35 +08:00
14 lines
246 B
Vue
14 lines
246 B
Vue
<template>
|
|
<div>
|
|
<a-button @click="onClick">Home</a-button>
|
|
{{ test }}
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
const { data: test } = await useFetch('/api/test');
|
|
const onClick=async function(){
|
|
console.log(1);
|
|
|
|
|
|
}
|
|
</script> |